wepesi/mailer

simple php module to help send smtp email using php mail function

v0.1.3 2023-01-08 12:59 UTC

This package is auto-updated.

Last update: 2024-05-11 19:41:11 UTC


README

simple php module to help send email using php mail module Note: Its should test on a live server. from localhost is not yet supported.

use Wepesi\Mailer\Email; 
 use Wepesi\Mailer\smtpConfiguration; 
  
 include_once __DIR__."/../vendor/autoload.php"; 
  
 $smtpConfig = (new smtpConfiguration()) 
     ->smtpServer("localhost") 
     ->smtpPort(25) 
     ->setUsername("you@example.com") 
     ->setPassword("p@ssW0rd") 
     ->organization("Wepesi") 
     ->generate(); 
 $email = new Email($smtpConfig); 
 $email->from("me@example.com"); 
 $email->to("you@example.com","wepesi"); 
 $email->subject("Subject"); 
 $email->text("Hello World"); 
 $email->setBCC(["johndoe@example.com","janedoe@example.com"]); 
 $email->setCC(["alfa@example.com","beta@example.com"]); 
 $result = $email->send(); 
  
 if(isset($result['exception'])){ 
     var_dump("email not sent"); 
 } 
 var_dump($result);