我正在尝试使用 amazon ses PHP sdk 发送电子邮件。
我得到了以下代码。工作正常
$body = "
<html>
<head>
<title>HTML email</title>
</head>
<body>
<p>This email contains HTML Tags!</p>
<table>
<tr>
<th>Firstname</th>
<th>Lastname</th>
</tr>
<tr>
<td>John</td>
<td>Doe</td>
</tr>
</table>
</body>
</html>
";
require_once('ses.php');
$ses = new SimpleEmailService('KEY', 'KEY');
$m = new SimpleEmailServiceMessage();
$m->addTo('mail@gmail.com');
$m->setFrom('Test Support <test@test.com>');
$m->setSubject('Hello, world!');
$m->setMessageFromString($body);
print_r($ses->sendEmail($m));
此代码运行良好,我很困惑如何通过此脚本发送 HTML 格式的邮件。
这样的身体
$body='<div ><b>Name</b></div>';
任何人请帮助我提前谢谢