定制 ongom/mailer 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

ongom/mailer

最新稳定版本:v1.0.0

Composer 安装命令:

composer require ongom/mailer

包简介

A PHP library that works similar to Nodemailer for node js, for sending emails.

README 文档

README

A PHP library that works similar to Nodemailer for node js, for sending emails.

What is Mailer exactly.

It is what is described above, it uses PHPMailer in the background. It can probably perform several tasks;

You're now fully equipped with a custom, flexible mail system using PHP and PHPMailer that supports:

✅ Gmail and other providers.

✅ Plain text + HTML emails.

✅ Reply-To, CC, BCC.

✅ Multiple recipients.

✅ File attachments.

✅ Inline images (e.g., logos in HTML body).

✅ Sending multiple email.

✅ Images.

Usage

It has two ways of using it, passing parameters as an associative array or using the Object format to assign parameters

Example Usage (Everything Included)

🟡 Option 1: Object Style

$mailer = new Mailer([
    'service' => 'gmail',
    'auth' => [
        'user' => 'your-email@gmail.com',
        'pass' => 'your-app-password'
    ]
]);
// 
$result = $mailer->send([
    'from' => 'your-email@gmail.com',
    'fromName' => 'Your Name',
    'to' => [
        ['email' => 'person1@example.com', 'name' => 'Alice'],
        ['email' => 'person2@example.com', 'name' => 'Bob']
    ],
    'cc' => 'manager@example.com',
    'bcc' => [
        ['email' => 'audit@example.com'],
        'hidden@example.com'
    ],
    'replyTo' => 'support@example.com',
    'replyToName' => 'Support Team',
    'subject' => 'Email with All Features',
    'html' => '
        <h1>Hello!</h1>
        <p>This email has HTML, CC, BCC, attachments, and an inline image:</p>
        <img src="cid:logo_cid">
    ',
    'text' => 'This is the plain text version.',
    'attachments' => [
        __DIR__ . '/files/report.pdf'
    ],
    'images' => [
        [
            'path' => __DIR__ . '/images/logo.png',
            'cid' => 'logo_cid',
            'name' => 'logo.png',
            'type' => 'image/png'
        ]
    ]
]);

echo $result === true ? "Email sent successfully!" : $result;
// 

🟡 Option 2: Array Style

$mail = new Mailer([
    'service' => 'gmail',
    'auth' => ['user' => 'you@gmail.com', 'pass' => 'your-app-password']
]);

//

$mail->from = 'you@gmail.com';
$mail->fromName = 'Your Name';
$mail->to = [
    ['email' => 'john@example.com', 'name' => 'John'],
    'jane@example.com'
];

// 
$mail->cc = 'boss@example.com';
$mail->bcc = ['secret@example.com'];
$mail->replyTo = 'reply@example.com';
$mail->replyToName = 'Reply Desk';
$mail->subject = 'Sample Email';
$mail->text = 'Plain text content';
$mail->html = '<h1>Hello</h1><p>This is HTML with logo</p><img src="cid:logo">';
$mail->attachments = [__DIR__ . '/files/invoice.pdf'];
$mail->images = [[
    'path' => __DIR__ . '/images/logo.png',
    'cid' => 'logo',
    'name' => 'logo.png',
    'type' => 'image/png'
]];

$result = $mail->send()
echo $$result === true ? "Sent!" : "Failed!";

The send method retrns a boolean.

统计信息

  • 总下载量: 1
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2025-05-17