/ Published in: PHP

Expand |
Embed | Plain Text
include($path."emails/ezine/templates/newsite/index.html"); $to = $_POST['email']; $subject = 'Breo Newsletter'; "; //$headers .= "Reply-To: ". strip_tags($_POST['req-email']) . " "; //$headers .= "CC: susan@example.com "; $headers .= "MIME-Version: 1.0 "; $headers .= "Content-Type: text/html; charset=ISO-8859-1 "; $sent = mail($to,$subject,$message,$headers); if($sent){ $display_form = false; } else { }
You need to login to post a comment.