4

这是发送邮件的代码:

$to = $_POST['leadEmail'];
$subject = "my subject";
$message = ( $_POST['leadEmailPref'] == "html" ) ? $messageh : $messagep ;
$headers[] = "From: My Name <ny_name@gmail.com>";
$headers[] = "Content-type: ".$_POST['leadEmailPref'] ;

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

当我转到我的收件箱时,邮件作为附件发送,我看不到该邮件。显然我不想要附件,我希望收到电子邮件的人立即看到邮件。

4

2 回答 2

8

Content-type:错了。应该是text/htmlor text/plain,不是html

$headers[] = "Content-type: text/".$_POST['leadEmailPref'] ;

于 2013-07-05T12:32:00.993 回答
2

你应该试试:

add_filter( 'wp_mail_content_type', 'set_html_content_type' );

wp_mail( 'To Email', 'Subject', '<h1>Html Email</h1>' );

function set_html_content_type() {
    return 'text/html';
}

remove_filter( 'wp_mail_content_type', 'set_html_content_type' );
于 2015-02-26T11:42:35.513 回答