Advertisement
Guest User

Untitled

a guest
Nov 22nd, 2017
355
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.40 KB | None | 0 0
  1. <?php
  2. // mail() prodeduuralnie
  3.  
  4. $odbiorca = 'admin@prz.edu.pl';
  5. $temat = 'Temat';
  6. $wiadomosc = 'Tekst wiadomosci';
  7. $naglowki = 'From: student@prz.edu.pl' . "\r\n" .
  8.     'Reply-To: student@prz.edu.pl';
  9.  
  10. mail($odbiorca, $temat, $wiadomosc, $naglowki);
  11.  
  12.  
  13. // bblioteka PHPMailer obiektowo
  14.  
  15. // a weź to przerób
  16. // https://github.com/PHPMailer/PHPMailer/blob/master/examples/exceptions.phps
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement