Advertisement
Guest User

Untitled

a guest
Mar 18th, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. <?php
  2.  
  3. ini_set( 'display_errors', 1 );
  4.  
  5. error_reporting( E_ALL );
  6.  
  7. $from = "test@votredomaine.com";
  8.  
  9. $to = "adressedestinataire";
  10.  
  11. $subject = "Vérification PHP mail";
  12.  
  13. $message = "PHP mail marche";
  14.  
  15. $headers = "From:" . $from;
  16.  
  17. mail($to,$subject,$message, $headers);
  18.  
  19. echo "L'email a été envoyé.";
  20. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement