View Single Post
Old 04-12-2013, 12:26 PM   #3
davidmerinas
Registered User
 
Join Date: Apr 2013
Location: Cordoba (Spain)
Posts: 8
Something like
$to = '[email protected]';
$subject = 'Subject;
$body = 'This is the content of the mail';
$headers = "From: [email protected]\r\n" .
"X-Mailer: php";
if (mail($to, $subject, $body, $headers)) {
$result=true;
} else {
echo("ERROR: ".$e->getMessage());
}
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
davidmerinas is offline   Reply With Quote