php发邮件:swiftmailer, php邮件库——swiftmailer

Posted 穆晟铭

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php发邮件:swiftmailer, php邮件库——swiftmailer相关的知识,希望对你有一定的参考价值。

php发邮件:swiftmailer, php邮件库——swiftmailer

最近看到一个好的php邮件库,与phpmailer作用一样,但性能比phpmailer好,尤其是在处理附件的能力上,发送邮件成功的几率也高。

github地址:https://github.com/swiftmailer/swiftmailer.git

 

require_once ("lib/swift_required.php");

// 创建Transport对象,设置邮件服务器和端口号,并设置用户名和密码以供验证
$transport = Swift_SmtpTransport::newInstance(‘smtp.163.com‘, 25)
->setUsername(‘[email protected]‘)
->setPassword(‘password‘);

// 创建mailer对象
$mailer = Swift_Mailer::newInstance($transport);

// 创建message对象
$message = Swift_Message::newInstance();

// 设置邮件主题
$message->setSubject(‘这是一份测试邮件‘)

// 设置邮件内容,可以省略content-type
->setBody(
    ‘<html>‘ .
    ‘ <head></head>‘ .
    ‘ <body>‘ .
    ‘ Here is an image <img src="‘ . // 内嵌文件
    $message->embed(Swift_Image::fromPath(‘image.jpg‘)) .
    ‘" alt="Image" />‘ .
    ‘ Rest of message‘ .
    ‘<a href="http://www.baidu.com">百度</a>‘.
    ‘ </body>‘ .
    ‘</html>‘,
    ‘text/html‘
);

// 创建attachment对象,content-type这个参数可以省略
$attachment = Swift_Attachment::fromPath(‘image.jpg‘, ‘image/jpeg‘)
->setFilename(‘cool.jpg‘);

// 添加附件
$message->attach($attachment);

// 用关联数组设置收件人地址,可以设置多个收件人
$message->setTo(array(‘[email protected]‘ => ‘toName‘));

// 用关联数组设置发件人地址,可以设置多个发件人
$message->setFrom(array(
    ‘[email protected]‘ => ‘fromName‘,
));

// 添加抄送人
 $message->setCc(array(
      ‘[email protected]‘ => ‘Cc‘
 ));

// 添加密送人
$message->setBcc(array(
      ‘[email protected]‘ => ‘Bcc‘
));

// 设置邮件回执
$message->setReadReceiptTo(‘[email protected]‘);

// 发送邮件
$result = $mailer->send($message);

  

测试代码,测试例子:

 $Requests = __DIR__ . ‘/../../../vendor/swiftmailer/swiftmailer/lib/swift_required.php‘;
        require_once ($Requests);
        //Requests::register_autoloader ();

		// 创建Transport对象,设置邮件服务器和端口号,并设置用户名和密码以供验证
		$transport = \Swift_SmtpTransport::newInstance(‘smtp.exmail.qq.com‘, 25)
		->setUsername(‘[email protected]‘)
		->setPassword(‘Youxikaishi04‘);

		// 创建mailer对象
		$mailer = \Swift_Mailer::newInstance($transport);

		// 创建message对象
		$message = \Swift_Message::newInstance();

		// 设置邮件主题
		$message->setSubject(‘这是一份测试邮件‘)->setBody(‘aaaa‘);
		

		// 用关联数组设置收件人地址,可以设置多个收件人
		$message->setTo(array(‘[email protected]‘ => ‘muyang‘));

		// 用关联数组设置发件人地址,可以设置多个发件人
		$message->setFrom(array(
			‘[email protected]‘ => ‘shandongair‘,
		));		

		// 发送邮件
		$result = $mailer->send($message);


       echo "aaa";
	   exit;

  

 

以上是关于php发邮件:swiftmailer, php邮件库——swiftmailer的主要内容,如果未能解决你的问题,请参考以下文章

在php中检索退回邮件?

使用 php、gmail 和 swiftmailer 发送电子邮件会导致与 SSL 相关的错误

使用 Swift Mailer、GMail 和 PHP 发送电子邮件,权限被拒绝错误

Yii2 advance swiftmailer 不能发送邮件

yii2 邮件发送

使用 PHP Swiftmailer 时,我们如何解决错误 554 5.5.1(无有效收件人)?