定制 apeli/apelimailers 二次开发

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

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

apeli/apelimailers

Composer 安装命令:

composer require apeli/apelimailers

包简介

A lightweight, dependency-free PHP email library with SMTP, templating, queues, and analytics

README 文档

README

📧 Lightweight PHP email library with SMTP, queues, and analytics

PHP Version License

Overview

ApeliMailers is a PHP email library providing SMTP support, email queuing capabilities, and analytics. It's designed for developers who need a lightweight, flexible solution for handling email operations.

Features

  • SMTP Support: Send emails via SMTP with TLS/SSL encryption
  • Multiple Transport Options: Support for SMTP, Sendmail, and custom transports
  • Email Analytics: Track email performance metrics
  • Security-Focused: Built with security best practices
  • Configurable: Adaptable to various email service providers
  • Extensible Architecture: Create custom transport adapters

Installation

composer require apeli/apelimailers

Basic Usage

<?php
require __DIR__ . '/vendor/autoload.php';

use ApeliMailers\Core\Mailer;
use ApeliMailers\Transport\SmtpTransport;

// Configure transport
$transport = new SmtpTransport(
    'smtp.example.com',
    587,
    'username',
    'password',
    'tls'
);

// Initialize mailer
$mailer = new Mailer($transport);

// Create and send message
$message = $mailer->createMessage()
    ->from('sender@example.com', 'Sender Name')
    ->to('recipient@example.com', 'Recipient Name')
    ->subject('Hello from ApeliMailers')
    ->html('<h1>Welcome!</h1><p>This is an email sent with ApeliMailers.</p>');

$result = $mailer->send($message);

Configuration

Transport Options

SMTP Transport

$transport = new SmtpTransport(
    'smtp.example.com',  // Host
    587,                 // Port
    'username',          // Username
    'password',          // Password
    'tls',               // Encryption: 'tls', 'ssl', or null
    false                // Debug mode (optional)
);

Sendmail Transport

use ApeliMailers\Transport\SendmailTransport;

$transport = new SendmailTransport('/usr/sbin/sendmail -bs');

Environment Configuration

Create a .env file in your project root:

MAIL_HOST=smtp.example.com
MAIL_PORT=587
MAIL_USERNAME=username
MAIL_PASSWORD=password
MAIL_ENCRYPTION=tls

Load configuration in your code:

<?php
require __DIR__ . '/vendor/autoload.php';

$dotenv = Dotenv\Dotenv::createImmutable(__DIR__);
$dotenv->load();

$transport = new SmtpTransport(
    $_ENV['MAIL_HOST'],
    $_ENV['MAIL_PORT'],
    $_ENV['MAIL_USERNAME'],
    $_ENV['MAIL_PASSWORD'],
    $_ENV['MAIL_ENCRYPTION']
);

Adding Attachments

$message->addAttachment('/path/to/file.pdf', 'document.pdf');

Managing Recipients

$message->to('recipient@example.com', 'Recipient Name')
        ->cc('cc@example.com', 'CC Recipient')
        ->bcc('bcc@example.com', 'BCC Recipient')
        ->replyTo('reply@example.com', 'Reply Handler');

License

ApeliMailers is open-source software licensed under the MIT license.

apeli/apelimailers 适用场景与选型建议

apeli/apelimailers 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 12 次下载、GitHub Stars 达 0, 最近一次更新时间为 2025 年 05 月 05 日, 在 PHP 生态内属于活跃度较高的组件。

它主要适用于以下技术方向: 「mail」 「mailer」 「queue」 「php」 「email」 「analytics」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。

我们在过去多个企业项目中使用过 apeli/apelimailers 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 apeli/apelimailers 我们能提供哪些服务?
定制开发 / 二次开发

基于 apeli/apelimailers 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

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

GitHub 信息

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

其他信息

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