Guest User

Untitled

a guest
Aug 19th, 2018
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. <?php
  2.  
  3. ini_set('display_errors', 1);
  4. error_reporting(E_ALL);
  5.  
  6. require('postmark.php');
  7.  
  8. define('POSTMARKAPP_API_KEY', 'api ey is here');
  9. define('POSTMARKAPP_MAIL_FROM_NAME', 'Z****');
  10. define('POSTMARKAPP_MAIL_FROM_ADDRESS', 'noreply@tecn.me');
  11.  
  12. debug(Mail_Postmark::DEBUG_VERBOSE);
  13.  
  14. $email = new Mail_Postmark();
  15. $email->addTo('me@zackify.net', 'Zach');
  16. $email->subject('test');
  17. $email->messagePlain('will this work?');
  18. $email->send();
Add Comment
Please, Sign In to add comment