atmoner

Simple mail

Sep 7th, 2011
256
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.35 KB | None | 0 0
  1. <?php
  2. $Subject = 'Envoie de mail';
  3. $Message = 'Cet exemple montre comment vous pouvez envoyer un mail en texte clair avec PHP';
  4. $Headers = 'From: [email protected] \r\n' .
  5. 'Reply-To: [email protected] \r\n' .
  6. 'Content-type: text/html; charset=UTF-8 \r\n';
  7.  
  8. mail($To, $Subject, $Message, $Headers);
  9. ?>
Advertisement
Add Comment
Please, Sign In to add comment