以下のコードを使用して、phpを使用してメールを送信しています
<?php
$to = $_POST['emailbox'] ;
$message1 = nl2br($_REQUEST['output_textarea']);
$subject = 'script';
$message = "
<html>
<body>
<table bgcolor='Lavender' width='100%'>
<tr><td><font face=consolas>$message1</font></td></tr>
</table>
<br/><br/>
<a href="http://www.hyperlinkcode.com">Hyperlink Code</a>
</body>
</html>
";
$headers = "From: ase@abc.com\r\n";
$headers .= "Reply-To: anoop@abc.com\r\n";
$headers .= "MIME-Version: 1.0\r\n";
$headers .= "Content-Type: text/html; charset=ISO-8859-1\r\n";
mail($to, $subject, $message, $headers);
?>
しかし、上記のコードでハイパーリンクについて言及すると、 <a href="http://www.hyperlinkcode.com">Hyperlink Code</a>
以下のエラーが発生します。
Parse error: syntax error, unexpected T_STRING in eval()’d code on line 24
コードからハイパーリンク行コードを削除すると、正常に機能します。電子メールでハイパーリンクについて言及するにはどうすればよいですか?