coffeebreaks / mail
A simple class email send
V0.0.8
2025-04-21 04:14 UTC
Requires
- php: >=7.1
- phpmailer/phpmailer: ^6.9.3
This package is auto-updated.
Last update: 2025-04-21 04:15:36 UTC
README
A simple class email send
Instalation
composer require coffeebreaks/mail
Example
$mail = new \coffeebreaks\Mail(); $mail->config('smtp.your-host.com', 'your-user', 'you-pass', port); $mail->add('suport@example.com', 'Suport', 'your-mail@domain.com', 'Test classe Mail', "This is a email with <b>PhpMailer</b> and generic class <i>Mail</i>"); if ($mail->getResult()){ echo "Success :)"; }