Advertisement
koen_hendriks

Untitled

Sep 16th, 2013
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. koenbuntu@koenbuntu-B5130M:/var/www/pms$ cat mail.php
  2. <?php
  3. $to = 'mailnaarkoen@gmail.com';
  4. $subject = 'the subject';
  5. $message = 'hello';$headers = 'From: webmaster@example.com' . "\r\n" .
  6. 'Reply-To: webmaster@example.com' . "\r\n" .
  7. 'X-Mailer: PHP/' . phpversion();
  8. echo ' start sending mail at:'.date('H:i:s', time());
  9. echo "\r\n";
  10. mail($to, $subject, $message, $headers);
  11. echo 'mail has been sent at '.date('H:i:s', time());koenbuntu@koenbuntu-B5130M:/var/www/pms$ php5 mail.php
  12. start sending mail at:14:40:42
  13. mail has been sent at 14:41:47
  14. koenbuntu@koenbuntu-B5130M:/var/www/pms$
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement