4

我在使用 wp_mail 功能时遇到问题,希望有人能帮助我。

我需要在用户添加到文本区域“消息”的电子邮件中插入换行符。

有人可以帮忙吗?

我目前有以下代码从联系表发送电子邮件:

<?php

if( !isset($_REQUEST) ) return;

require('../../../../wp-load.php');
function wpse27856_set_content_type(){
return "text/html";
}
add_filter( 'wp_mail_content_type','wpse27856_set_content_type' );

$name = $_REQUEST['name'];
$phone = $_REQUEST['phone'];
$email = $_REQUEST['email'];
$msg = $_REQUEST['message'];


$headers = 'From: '.$name.' <'.$email.'>' . "\r\n";
$message = '
<html>
<body>
Someone has made an enquiry on the online contact form:

<br /><br />
        <b>Contact Details:</b><br />
        '.$name.'<br />
        '.$phone.'<br />
        '.$email.'<br /><br />
        <b>Message:</b><br />
        '.$msg.'<br />

        <br /><br />


</body>
</html>
            ';

wp_mail('email@email.co.uk', 'Contact form Message' , $message, $headers);


?>
4

4 回答 4

4

默认情况下,wp_mail() 以纯文本形式发送消息,因此电子邮件客户端不会解析 HTML。

在您的电子邮件中包含以下标题:

$headers .= "MIME-Version: 1.0\r\n";
$headers .= "Content-Type: text/html; charset=ISO-8859-1\r\n";

由于您的电子邮件采用 HTML 格式,因此最好使用适当的 HTML 样板(HTML、HEAD、BODY...)使其有效。

或者,您可以用
回车符 (\r\n) 替换您的标签,尽管您仍然需要摆脱标签。

这已经包含在 mail() 的 PHP 文档中,wp_mail() 围绕该文档进行包装。

http://php.net/manual/en/function.mail.php

于 2013-02-04T15:27:57.123 回答
3

如果您的 textarea 包含 html,您可以在邮件中添加标题

$headers .= "MIME-Version: 1.0\r\n";
$headers .= "Content-Type: text/html; charset=ISO-8859-1\r\n";
于 2013-02-04T14:49:39.277 回答
2

$msg = nl2br($_REQUEST['message']);

于 2013-02-04T14:49:58.637 回答
1

使用此标头在电子邮件中发送 html

$headers  = "MIME-Version: 1.0" . "\n";
    $headers .= "Content-type: text/html; charset=iso-8859-1" . "\n";
    $headers .= "X-Priority: 1 (Higuest)\n";
    $headers .= "X-MSMail-Priority: High\n";
    $headers .= "Importance: High\n";

    $headers .= "From: Approprice <".$mailfrom.">" . "\n";
    $headers .= "Return-Path: Approprice <".$mailfrom.">" . "\n";
    $headers .= "Reply-To: Approprice <".$mailfrom.">";
于 2016-03-04T11:31:53.553 回答