Call to Email Class


/ Published in: PHP
Save to your folder(s)

Just a simple script showing how to make calls to an Email script.


Copy this code and paste it in your HTML
  1. require('APEmail.class.php');
  2. $Email = new APEmail();
  3.  
  4. $names = array('phpcarlos@gmail.com','john.doe@example.com');
  5.  
  6. $Email->add_recipient($names);
  7. $Email->set_from('john@suburbanarctic.com');
  8. $Email->set_subject('Hello, World | Subject');
  9. $Email->set_message('This is a message.');
  10.  
  11. if($Email->send_email())
  12. {
  13. echo "Email Sent!";
  14. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.