frozenpeas
Technical User
Hi,
I am receiving this email twice - the first one is correct, the extra one is blank.
I am submitting the form with this:
and my PHP code is:
Has anyone had this problem before?
Thanks.
frozenpeas
I am receiving this email twice - the first one is correct, the extra one is blank.
I am submitting the form with this:
Code:
<a href="javascript:document.form.submit()">
and my PHP code is:
Code:
$header = "From: ".$row['namef']." ".$row['namel']."<".$row['email'].">"."\r\n"
."Reply-To: ".$row['email']."\r\n"
."\"MIME-Version: 1.0\"\r\n"
."Content-Type: text/plain;";
$boundary = uniqid("EMAIL");
$toaddress = 'user@hotmail.com';
$subject = "Submitted event: ".$subject;
$mailcontent = $message;
mail($toaddress, $subject, $mailcontent, $header);
Has anyone had this problem before?
Thanks.
frozenpeas