ヒアドキュメントは通常、長い文字列、または場合によっては複数の考えに使用され、別々の行にセグメント化する必要があります。
tuxradarは次のように述べています。「人々がPHP内から大量のテキストを簡単に記述できるようにするために、常に物事をエスケープする必要はありません。ヒアドキュメント構文が開発されました。」
<?php
$mystring = <<<EOT
This is some PHP text.
It is completely free
I can use "double quotes"
and 'single quotes',
plus $variables too, which will
be properly converted to their values,
you can even type EOT, as long as it
is not alone on a line, like this:
EOT;
?>
あなたの場合、単にストリングをエコーアウトする方が理にかなっています。
$message = '<p style="font-size: 9px; font-family: Verdana, Helvetica; width: 100%; text-align:left;">Clcik to remove <a href="http://www.mysite.com/remove.php?email=' $email '">clicking here.</a></p>';
echo $message;