Swift Mailer ——Comprehensive mailing tools for PHP

Swift Mailer ——Comprehensive mailing tools for PHP,第1张

概述Swift Mailer是一个PHP邮件发送类,直接与 SMTP 服务器通讯,具有非常高的发送速度和效率。 官网:http://swiftmailer.org/ Github:https://github.com/swiftmailer 使用说明: require_once 'swiftmailer-master/lib/swift_required.php';//引入swiftmailer

Swift Mailer是一个PHP邮件发送类,直接与 SMTP 服务器通讯,具有非常高的发送速度和效率。

官网:http://swiftmailer.org/

Github:https://github.com/swiftmailer

使用说明:

require_once 'swiftmailer-master/lib/swift_required.PHP';//引入swiftmailer				$email = '1119303512@qq.com';//接收邮箱				//发送邮件,以QQ邮箱为例				//配置邮件服务器,得到传输对象				$transport=Swift_SmtpTransport::newInstance('smtp.qq.com',25);				//设置登陆帐号和密码				$transport->setUsername('207887505@qq.com');//发送邮箱				$transport->setPassword('******');				//得到发送邮件对象Swift_Mailer对象				$mailer=Swift_Mailer::newInstance($transport);				//得到邮件信息对象				$msg=Swift_Message::newInstance();				//设置管理员的信息				$msg->setFrom(array('207887505@qq.com'=>'Meet Better Me'));				//将邮件发给谁				$msg->setTo($email);				//设置邮件主题				$msg->setSubject('网站有人留言啦!');				$str = $message;				$msg->setbody("留言内容为——{$str}",'text/HTML','utf-8');				try{					$mailer->send($msg);				}catch(Swift_connectionexception $e){					echo $e.getMessage();				}

效果:
总结

以上是内存溢出为你收集整理的Swift Mailer ——Comprehensive mailing tools for PHP全部内容,希望文章能够帮你解决Swift Mailer ——Comprehensive mailing tools for PHP所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1084116.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-27
下一篇 2022-05-27

发表评论

登录后才能评论

评论列表(0条)

保存