gpt4 book ai didi

php - 无法使用 html 格式的 php 邮件从服务器发送邮件

转载 作者:太空宇宙 更新时间:2023-11-04 03:52:14 25 4
gpt4 key购买 nike

我正在尝试使用 php 邮件功能发送邮件,它与以下代码配合良好:

<?php
$to = "abhwebdesign@gmail.com";
$subject = "subject";
$password="xxxxx";
$message = "
<html>
<head>
<title>HTML email</title>
</head>
<body >
<div style='width:670px;height:450px;padding:50px;background-color:#EFEFEB;'>
<div style='width:600px;height:450px;background-color:#FFFFFF;color:#105b94;font-size:20px;padding:10px'>
<img src='http://www.example.com/Images/Index/Logo.png' />
<p>Hi,</p>
<table style='color:#105b94;font-size:20px;'>
<tr>
<td><p>Thank you for registering with us.</p></td>
</tr>
<tr>
<td><br>Your password is :$password<br><br>We appreciate your interest.
</td>
</tr>
<tr>
<td><hr>Contact Us <br>Office :9999999999<br>www.example.com
</td>
</tr>
</table>
</div>
</div>
</body>
</html>
";

// Always set content-type when sending HTML email
$headers = "MIME-Version: 1.0" . "\r\n";
$headers .= "Content-type:text/html;charset=UTF-8" . "\r\n";

// More headers
$headers .= 'From: Support <support@example.com>' . "\r\n";


mail($to,$subject,$message,$headers);
?>

如果我从上述代码中的“Office :9999999999
www.example.com
”行中删除 www.example.com,代码就可以正常工作,请帮助我。

最佳答案

我强烈建议您使用:http://swiftmailer.org/

这包括邮件 header 和配置。它管理所有您不想看到的东西。

亲切的问候!

关于php - 无法使用 html 格式的 php 邮件从服务器发送邮件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25971218/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com