要使用PHPmailer发送多封电子邮件,可以按照以下步骤进行操作:
require 'path/to/PHPMailerAutoload.php';
$mail = new PHPMailer;
$mail->isSMTP();
$mail->Host = 'smtp.example.com';
$mail->SMTPAuth = true;
$mail->Username = 'your-email@example.com';
$mail->Password = 'your-email-password';
$mail->SMTPSecure = 'tls';
$mail->Port = 587;
$mail->setFrom('your-email@example.com', 'Your Name');
addAddress()
方法添加收件人,使用addCC()
方法添加抄送,使用addBCC()
方法添加密送。以下是一个示例代码:$mail->addAddress('recipient1@example.com', 'Recipient 1');
$mail->addAddress('recipient2@example.com', 'Recipient 2');
$mail->addCC('cc@example.com', 'CC');
$mail->addBCC('bcc@example.com', 'BCC');
Subject
属性设置邮件主题,使用Body
属性设置邮件正文。如果需要添加附件,可以使用addAttachment()
方法。以下是一个示例代码:$mail->Subject = 'Test Email';
$mail->Body = 'This is a test email.';
$mail->addAttachment('path/to/file.pdf', 'Attachment.pdf');
send()
方法发送邮件。如果邮件成功发送,send()
方法将返回true
,否则返回false
。以下是一个示例代码:if ($mail->send()) {
echo 'Email sent successfully.';
} else {
echo 'Email could not be sent.';
}
领取专属 10元无门槛券
手把手带您无忧上云