denour/

mailer

一个用于发送详细电子邮件的库

0.0.1 2017-05-21 03:03 UTC

This package is not auto-updated.

Last update: 2024-09-23 16:30:48 UTC


README

用法

$config = new \Denour\Mailer\Config();
$config->Email = 'email@email.com';
$config->Password = 'Password';
$config->Name = 'Name of the Person';
$mailer = new \Denour\Mailer\Mailer($config);

$mail = new \Denour\Mailer\Email();
$mail->Subject = 'Test';
$mail->Body = 'This is a email full of test';
$mail->AddPerson('sendemail@email.com', 'Person');

$mailer->send($mail);