leon-for-nix/my-mailer

该软件包最新版本(v1.0.0)没有提供许可信息。

我的邮件发送器版本

v1.0.0 2021-08-05 19:15 UTC

This package is auto-updated.

Last update: 2024-09-06 02:00:36 UTC


README

<?php

use App\Transport\MailTransport;

$config = [
    'smtp'=>'smtp.gmail.com',
    'port' => 465,
    'encryption'=>'ssl',
    'pathTemplates'=> '/templates/',
    'defaultTemplate'=> '/templates/default.php',
    'username'=>'user',
    'email'=>'info@gmail.com',
    'password'=> 'pass',
];
$pathLog = '/logs/log.log';

$transport = new MailTransport($config);
$transport->setLogs($pathLog, 'user');

$params = [
    'shopName' => "Apple Shop",
    'item' => "2718",
];
$title = "Your purchase";

$transport->send('order', 'info@gmail.com', 'user', $title, $params);

默认模板

<div style="padding: 20px;">
    <?= $body?>
</div>

常规模板

<h2>In the online store "<?=$shopName?>" you ordered a product №<?=$item?>!</h2>
<p>Thanks, Online store "<?=$shopName?>"<p>