阅读量:0
要使用PHP和SwiftMailer库发送电子邮件,请按照以下步骤操作:
- 首先,确保已经安装了SwiftMailer。如果尚未安装,可以通过Composer进行安装。在命令行中运行以下命令:
composer require swiftmailer/swiftmailer
- 创建一个名为
send_email.php
的新文件,并在其中包含以下代码:
<?php // 引入自动加载器 require_once 'vendor/autoload.php'; // 导入必需的类 use Swift_Message; use Swift_Mailer; use Swift_SmtpTransport; // 配置SMTP服务器设置 $transport = (new Swift_SmtpTransport('smtp.example.com', 587)) // 你的SMTP服务器地址和端口 ->setUsername('your_email@example.com') // 你的SMTP用户名(通常是你的邮箱地址) ->setPassword('your_email_password'); // 你的SMTP密码 // 创建邮件传输器实例 $mailer = new Swift_Mailer($transport); // 创建邮件消息实例 $message = (new Swift_Message('邮件主题')) // 邮件主题 ->setFrom(['your_email@example.com' => 'Your Name']) // 发件人邮箱和姓名 ->setTo(['recipient@example.com' => 'Recipient Name']) // 收件人邮箱和姓名 ->setBody('这是一封测试邮件。'); // 邮件正文 // 发送邮件 $result = $mailer->send($message); if ($result) { echo "邮件发送成功!"; } else { echo "邮件发送失败!"; }
在上述代码中,将
smtp.example.com
、your_email@example.com
、your_email_password
和收件人信息替换为实际值。保存文件并在命令行中运行该文件:
php send_email.php
如果一切正常,你应该会看到“邮件发送成功!”的输出。收件人应该会收到一封测试邮件。