加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

Swift Mailer ——Comprehensive mailing tools for PHP

发布时间:2020-12-14 01:46:23 所属栏目:百科 来源:网络整理
导读:Swift Mailer是 一个PHP邮件发送类, 直接与 SMTP 服务器通讯,具有非常高的发送速度和效率。 官网: http://swiftmailer.org/ Github:https://github.com/swiftmailer 使用说明: require_once 'swiftmailer-master/lib/swift_required.php';//引入swiftma

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();
				}

效果:

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读