HTML电子邮件无法使用表格格式

问题描述 投票:0回答:1

我在HTML电子邮件内容中使用表格格式,因此无法发送电子邮件。所以可以让我知道如何使用PHP发送表格格式的电子邮件吗?

wordpress email
1个回答
0
投票
 $data = "<table><tr><td>Name</td><td>".$name."</td></tr>
                    <tr><td>Lead Person Name</td><td>".$pname."</td></tr>
                    <tr><td>Tour Date</td><td>".$date."</td></tr>
                    <tr><td>No. Of Pax</td><td>".$person."</td></tr>
            </table>";

$subject = 'HTML Formate mail';
$body = $data;
$headers = 'Content-Type: text/html; charset=UTF-8';

wp_mail('[email protected]', $subject, $body, $headers ); 
© www.soinside.com 2019 - 2024. All rights reserved.