Code: Select all
<?php
$msg = "<a href=\"http//myurl\">URL</a>";
mail('mymail','sub',$msg,'FROM:'. 'Someone');
?>URL
but it looks like this
Code: Select all
<a href=\"myurl\">URL</a>Moderator: General Moderators
Code: Select all
<?php
$msg = "<a href=\"http//myurl\">URL</a>";
mail('mymail','sub',$msg,'FROM:'. 'Someone');
?>Code: Select all
<a href=\"myurl\">URL</a>Code: Select all
$headers = "from: $x_email_from\n";
$headers .= "Content-Type: text/html; charset=us-ascii\n";
$headers .= "Content-Transfer-Encoding: 7bit";