You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

832 B

< Documentation

LE_MAIL

© by Pavel Belyaev, LE Framework, Tech-Research.ru

About

Простейший класс для отправки почты механизмом sendmail, требует настроеного MTA (например, Postfix)

Применение

Обычное письмо HTML

$mail = new LE_MAIL;

$from="robot@example.org";
$to="mymail@example.org";
$subject="test123";
$body="<p>text of mail</p>";


$mail->send($from,$to,$body,$subject);

Письмо с вложением

$mail = new LE_MAIL;

$from="robot@example.org";
$to="mymail@example.org";
$subject="test123";
$body="<p>text of mail</p>";


$files = [];
//пути до файлов
$files[] = __DIR__."/1.xls";
$files[] = __DIR__."/2.xls";


$mail->send($from,$to,$body,$subject,$files);