wepesi / mailer
simple php module to help send smtp email using php mail function
v0.1.3
2023-01-08 12:59 UTC
Requires
- php: >=7.4
- wepesi/optionsresolver: dev-master
- wepesi/validation: dev-master
This package is auto-updated.
Last update: 2024-11-11 20:46:48 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);