我正在尝试使用swiftmailer发送电子邮件。有没有办法使用 EOD 呢?
这种语法(来自他们的网站)似乎是一种在 html 中构建东西的非常困难的方法:
'<html>' .
' <head></head>' .
' <body>' .
' Here is an image <img src="' . $cid . '" alt="Image" />' .
' Rest of message' .
' </body>' .
'</html>',
但是当我尝试这个
$msg = <<<EOD
<html>
<table>
<tr>
<td>
NAME
</td>
<td>
thomas
</td>
</tr>
<tr>
<td>
COMPANY
</td>
<td>
whatever
</td>
</tr>
</table>
<html>
EOD;
// Set the To addresses with an associative array
->setTo(array('whatever@whatever.whatever'=>'thomas'))
// Give it a body
->setBody($msg)
;
// Send the message
$result = $mailer->send($message);
我只是收到一封打印出 html 的电子邮件。有没有办法让这更容易?