//phpmailer代码工具类以及传到我的csdn“我的资源”中,可以带这里去下载</span>
echo '<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">'; require_once("class.phpmailer.php"); //下载的文件必须放在该文件所在目录 $mail = new PHPMailer(); //建立邮件发送类 $mail->CharSet = "UTF-8"; //设定邮件编码,默认ISO-8859-1,如果发中文此项必须设置为 UTF-8 $mail->Encoding = "base64"; $mail->IsSMTP(); // 使用SMTP方式发送 $mail->Host = "smtp.163.com"; // 您的企业邮局域名 $mail->SMTPAuth = true; // 启用SMTP验证功能 $mail->Username = "[email protected]"; // 邮局用户名(请填写完整的email地址) $mail->Password = "leyangjun518518"; // 邮局密码 $mail->Port = 25; //$mail->SMTPDebug = 0; //调试开启 1开启 0关闭 $mail->isHTML(true); // 设置以HTML格式发送 $mail->AddAttachment("img/phpMailer.docx"); // 添加附件 $mail->AddAttachment("img/leyangjun.jpg", "new.jpg"); // 添加附件,并指定名称 $mail->From = "[email protected]"; //发送人的地址(也就是你的邮箱) $mail->FromName = "乐杨俊"; //发件人的姓名 //$mail->AddAddress($address, "亲");//添加收件人(地址,昵称) $mail->addAddress('[email protected]'); //收邮件人的邮箱 $mail->Subject = "测试邮件系统"; //邮件的标题 $mail->Body = '<table border="1" cellspacing="0" cellpadding="0"> <tr bgcolor="yellow"> <td>姓名</td> <td>年龄</td> <td>地址</td> </tr> <tr> <td>乐杨俊</td> <td>24</td> <td>江西省</td> </tr> <tr><td colspan="3"><a href="http://www.w3"><img src="http://www.sofavi.com/wx/img/leyangjun.jpg" alt="lekey" /></a></td></tr> </table>'; //邮件内容 $mail->AltBody = "This is the body in plain text for non-HTML mail clients"; //附加信息,可以省略 if (!$mail->Send()) { echo "失败了也 <p>"; echo "失败原因: " . $mail->ErrorInfo; exit; } echo "成功了也 OK"; </span>
phpMailer 发邮件例子、乱码、发送html内容介绍
时间: 2024-10-05 09:16:14