写真付きのメールを送信しようとしています。私のメールの本文は次のとおりです。
<?php
$message = <<< email
<img src="http://planet-earth.bogus.us/icons/secret.pictures.gif">
Dear {$email},
email;
?>
メールを受信すると、画像が表示されません。代わりに、私は見<img src="http://planet-earth.bogus.us/icons/secret.pictures.gif">
ます。<<< メールが原因であることはわかっています。<<< メールを使用してコードの代わりに画像を表示するにはどうすればよいですか?
アップデート
私はzendフレームワークを使用しています。私のコードは次のようになります。
<?php
$mail = new Zend_Mail();
$mail->setFrom('admin@mysite.com', 'My site');
$mail->addTo($recoveryaccount->username);
$mail->setSubject("Mysite");
include "_email_recover_password.phtml";
$mail->setBodyText($message);
$mail->send();
?>
_include "_email_recover_password.pthml"
<?php
$message = <<< email
<img src="http://picturelocation.picture.gif">
Dear {$account->getUsername()},
Somebody has requested that the password associated with this account be
reset. If you initiated this request, click the below link to complete the process:
http://www.example.com/{$account->getRecovery()}
Thank you!
Mysite
Questions? Contact us at admin@mysite.com
email;
?>