配置PHP邮件发送通常涉及设置SMTP(简单邮件传输协议)服务器信息,以便PHP能够通过它发送电子邮件。以下是一个基本的配置示例,使用PHPMailer库来发送邮件:
composer require phpmailer/phpmailer
send_email.php
,并在其中引入PHPMailer:<?php
use PHPMailer\PHPMailer\PHPMailer;
use PHPMailer\PHPMailer\Exception;
require 'vendor/autoload.php';
$mail = new PHPMailer(true);
try {
// 服务器设置
$mail->SMTPDebug = 2;
$mail->isSMTP();
$mail->Host = 'smtp.example.com'; // 请替换为你的SMTP服务器地址
$mail->SMTPAuth = true;
$mail->Username = 'your_username@example.com'; // 请替换为你的SMTP用户名
$mail->Password = 'your_password'; // 请替换为你的SMTP密码
$mail->SMTPSecure = PHPMailer::ENCRYPTION_STARTTLS;
$mail->Port = 587; // 或者465,取决于你的SMTP服务器配置
// 发件人和收件人
$mail->setFrom('your_email@example.com', 'Mailer');
$mail->addAddress('recipient@example.com', 'Joe User'); // 收件人的电子邮件地址
// 邮件内容
$mail->isHTML(true);
$mail->Subject = 'Here is the subject';
$mail->Body = 'This is the HTML message body <b>in bold!</b>';
$mail->AltBody = 'This is the body in plain text for non-HTML mail clients';
$mail->send();
echo 'Message has been sent';
} catch (Exception $e) {
echo "Message could not be sent. Mailer Error: {$mail->ErrorInfo}";
}
?>
请确保将上述代码中的smtp.example.com
、your_username@example.com
、your_password
、your_email@example.com
和recipient@example.com
替换为你自己的SMTP服务器信息和电子邮件地址。
send_email.php
脚本,它将尝试通过配置的SMTP服务器发送一封电子邮件。请注意,不同的SMTP服务器可能有不同的配置要求,例如是否需要SSL/TLS加密、端口号等。务必参考你的SMTP服务提供商的文档来获取正确的配置信息。此外,出于安全考虑,不要在代码中硬编码敏感信息,如密码。可以使用环境变量或配置文件来安全地存储这些信息。