Simple Email Function <?php // The message $message = "This is Sample Message"; // Email Send mail('youremail@example.com', 'My Subject', $message); ?> Code (markup): Included Custom Headers <?php $to = 'nobody@example.com'; $subject = 'the subject'; $message = 'hello'; $headers = 'From: webmaster@example.com' . "\r\n" . 'Reply-To: webmaster@example.com' . "\r\n" ; mail($to, $subject, $message, $headers); ?> Code (markup): More Details >> http://php.net/manual/en/function.mail.php Or if u need to send secure bulk emails, you can use phpmailer function. http://sourceforge.net/projects/phpmailer/ Tutorials >> http://www.web-development-blog.com/archives/send-e-mail-messages-via-smtp-with-phpmailer-and-gmail/