0

我按照本教程制作了一个 php 脚本以在 php 中发送电子邮件:

教程

它有效,但并非总是如此。一些用户在他们的电子邮件中看到了我的 php 代码。

例如 :

Content-Type: multipart/alternative;

 boundary="-----=2ba3f325bd1156f694ea4dbd4a2aee3f"

-------=2ba3f325bd1156f694ea4dbd4a2aee3f

Content-Type: text/plain; charset="ISO-8859-1"

Content-Transfer-Encoding: 8bit

Ceci est un test.

-------=2ba3f325bd1156f694ea4dbd4a2aee3f

Content-Type: text/html; charset="ISO-8859-1"

Content-Transfer-Encoding: 8bit

  <html>
   <head>
    <meta http-equiv="content-type" content="text/html; charset=utf-8" />
    <title>Demande de réinitialisation de mot de passe</title>
   </head>
   <body style="background-color:#f5f5f5;">

ETC..

预先感谢您的帮助 :)

4

1 回答 1

0

不要直接使用邮件功能,而是使用 Swiftmailer http://swiftmailer.org/之类的库

让您可以更好地控制设置元数据、mime 类型等并避免陷阱。

于 2013-02-27T11:21:33.317 回答