Code: Select all
$subject = "Subject";
$message = "What I tell them and stuff.";
$message = wordwrap($message, 90); // just to be neat, of course.
$from = "noreply@burnttoastonline.com";
$headers = "From: $from";
mail($email,$subject,$message,$headers);Am I doing anything wrong? Also, I want to add HTML in later on... will that get my emails filed as spam or just not sent, too?