A simple class email send

Maintainers

Package info

github.com/Guilherme-fagundes/mail

pkg:composer/coffeebreaks/mail

Statistics

Installs: 16

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

V0.0.8 2025-04-21 04:14 UTC

This package is auto-updated.

Last update: 2026-03-21 06:22:21 UTC


README

PHP from Packagist Latest Stable Version Total Downloads License Build Quality Score

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 :)";
}