1

我正在尝试创建一个 PHP 脚本来使用 PHPMailer 发送 AMP 电子邮件。在阅读在线教程时,我发现您可以在 PHPMailer 中指定 Mime 类型,如下所示:

$mail->AltBody = "Hello, my friend! This message uses plain text !";

这应该会创建 TEXT 格式的替代正文,并且消息将自动使用 MIME 类型 multipart/alternative。但是,根据 AMP for Email官方文档,我需要为 AMP Emails 设置一个全新的 MIME 类型:text/x-amp-html。我似乎找不到使用 PHPMailer 的方法。我正在构建这个脚本,以便稍后我可以在 Magento 2 上重新创建代码。现在我只发现这个插件应该完全满足我的需要。但是,我相信我正在尝试构建的这个 PHP 脚本应该对整个 Stackoverflow 社区都有用。

我的最后一个想法是使用原生 PHP mail() 函数发送 AMP 电子邮件,但我不知道如何。我认为,我必须在变量中传递 AMP 电子邮件 HTML$message并将 AMP 标头设置为$headers. 请看下面:

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

任何帮助表示赞赏!

4

1 回答 1

2

以下脚本应为您的电子邮件添加一种额外的 mime 类型。我已按照您的两个链接了解您的需求,并根据提供的文档构建了此代码段。但是我没有时间测试它。希望能帮助到你。

//specify the email address you are sending to, and the email subject
$email = 'email@example.com';
$subject = 'Email Subject';

//create a boundary for the email. This 
$boundary = uniqid('np');

//headers - specify your from email address and name here
//and specify the boundary for the email
$headers = "MIME-Version: 1.0\r\n";
$headers .= "From: Your Name \r\n";
$headers .= "To: ".$email."\r\n";
$headers .= "Content-Type: multipart/alternative;boundary=" . $boundary . "\r\n";

//here is the content body
$message = "This is a MIME encoded message.";
$message .= "\r\n\r\n--" . $boundary . "\r\n";

$message .= "Content-type: text/plain;charset=utf-8\r\n\r\n"
//Plain text body
$message .= "Hello,\nThis is a text email, the text/plain version.
\n\nRegards,\nYour Name";
$message .= "\r\n\r\n--" . $boundary . "\r\n";
$message .= "Content-type: text/html;charset=utf-8\r\n\r\n";

//Html body
$message .= "
 Hello,
This is a text email, the html version.

Regards,
Your Name";
$message .= "\r\n\r\n--" . $boundary . "--";
$message .= "Content-type: text/x-amp-html;charset=utf-8\r\n\r\n"

//AMP Email body
$message .= ‘<!doctype html>
<html ⚡4email>
<head>
  <meta charset="utf-8">
  <style amp4email-boilerplate>body{visibility:hidden}</style>
  <script async src="https://cdn.ampproject.org/v0.js"></script>
</head>
<body>
Hello World in AMP!
</body>
</html>’;
$message .= "\r\n\r\n--" . $boundary . "\r\n";

//invoke the PHP mail function
mail('', $subject, $message, $headers);
于 2019-08-29T02:12:16.177 回答