当前位置 : 主页 > 网络编程 > PHP >

使用PHPMailer来发送带图片的 HTML Emails

来源:互联网 收集:自由互联 发布时间:2021-07-03
?phprequire("class.phpmailer.php");$mail = new PHPMailer();$mail = new PHPMailer();$mail-IsSMTP();$mail-Host = "smtp1.example.com;smtp2.example.com";$mail-SMTPAuth = true;$mail-Username = 'smtpusername';$mail-Password = 'smtppassword'; $mai
<?php
require("class.phpmailer.php");
$mail = new PHPMailer();$mail = new PHPMailer();
$mail->IsSMTP();
$mail->Host = "smtp1.example.com;smtp2.example.com";
$mail->SMTPAuth = true;
$mail->Username = 'smtpusername';
$mail->Password = 'smtppassword';
 
$mail->From="[email protected]";
$mail->FromName="My site's mailer";
$mail->Sender="[email protected]";
$mail->AddReplyTo("[email protected]", "Replies for my site");
 
$mail->AddAddress("[email protected]");
$mail->Subject = "Test 1";
 
$mail->IsHTML(true);
$mail->AddEmbeddedImage('logo.jpg', 'logoimg', 'logo.jpg'); // attach file logo.jpg, and later link to it using identfier logoimg
$mail->Body = "<h1>Test 1 of PHPMailer html</h1>
    <p>This is a test picture: <img src=\"cid:logoimg\" /></p>";
$mail->AltBody="This is text only alternative body.";
 
if(!$mail->Send())
{
   echo "Error sending: " . $mail->ErrorInfo;;
}
else
{
   echo "Letter is sent";
}
?>
网友评论