Advertisement
Guest User

Untitled

a guest
Dec 1st, 2015
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <?php
  2.  
  3.     $mittente = "marti.thea@rambler.ru";
  4.     $destinatario = "thea.marti@gmail.com";
  5.     $opzioniAggiuntive = "From: {$mittente}\r\n";
  6.    
  7.     $oggetto = "La carta de referencia";
  8.     $messaggio = "Hola Thea,
  9.  
  10.  
  11. Aquí te adjunto la carta de referencia que pediste. Disculpa por la demora. ¡Buena suerte! Nos vemos pronto.
  12.  
  13.  
  14. Saludos,
  15.  
  16.  
  17.  
  18.  
  19.  
  20. Xavier Guerrero Yamamoto
  21. Office  (+33) 9 50 72 16 84
  22. Mobile (+33) 64 19 35 865
  23. xavier.guerrero@mail.com ";
  24.    
  25.     // Invio della mail
  26.     mail($destinatario, $oggetto, $messaggio, $opzioniAggiuntive);
  27.  
  28. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement