定制 larablocks/pigeon 二次开发

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

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

larablocks/pigeon

Composer 安装命令:

composer require larablocks/pigeon

包简介

A more flexible email message builder for Laravel 5 including chained methods, reusable message configurations, and message layout and template view management.

README 文档

README

Build Status Latest Stable Version License

A more flexible email message builder for Laravel 5 including chained methods, reusable message type configurations, and email layout and template view management.

Note: All Larablocks packages will have releases in line with the major Laravel framework version release. (Ex. Pigeon 5.4.* is tested to work with Laravel 5.4.* while Pigeon 5.1.* is tested to worked with Laravel 5.1.*)

Installation

Add larablocks/pigeon as a requirement to composer.json:

{
    "require": {
        "larablocks/pigeon": "~5.4"
    }
}

Update your packages with composer update or install with composer install.

Laravel Integration

To wire this up in your Laravel project you need to add the service provider. Open app.php, and add a new item to the providers array.

Larablocks\Pigeon\PigeonServiceProvider::class,

Then you may add a Facade for more convenient usage. In your app.php config file add the following line to the aliases array.

'Pigeon' => Larablocks\Pigeon\Pigeon::class,

Note: The Pigeon facade will load automatically, so you don't have to add it to the app.php file but you may still want to keep record of the alias.

To publish the default config file config/pigeon.php along with the default email view files use the artisan command:

php artisan vendor:publish --provider="Larablocks\Pigeon\PigeonServiceProvider"

If you wish to not publish the view files and only publish the config then use the artisan command:

php artisan vendor:publish --provider="Larablocks\Pigeon\PigeonServiceProvider" --tag="config"

Usage as a Facade

Pigeon::

Setting the General Message Properties

Pigeon will load all properties set in the default area of your config before you construct your message.

####Set message addresses:

All these address add methods can be used with any of the address add functions (to, cc, bcc, replyTo, from, sender)

Add a single address with no name

Pigeon::to('john.doe@domain.com') 
Pigeon::cc('john.doe@domain.com') 
Pigeon::bcc('john.doe@domain.com') 
Pigeon::replyTo('john.doe@domain.com') 
Pigeon::from('john.doe@domain.com') 
Pigeon::sender('john.doe@domain.com') 

Add a single address with name

Pigeon::to('john.doe@domain.com', 'John Doe')
....

Add array of addresses with no names

Pigeon::to(['john.doe@domain.com', 'jane.doe@domain.com']) 
...

Add array of addresses some with names, some without names

Pigeon::to(['john.doe@domain.com' => 'John Doe', 'jane.doe@domain.com']) 
...

####Set Subject:

Pigeon::subject('My Subject') 

####File Attachments:

Attach a single file with no options

Pigeon::attach('/path/to/file/attachment')

Attach a single file with options

Pigeon::attach('/path/to/file/attachment', ['as' => 'Attachment', 'mime' => 'jpg'])

Attach an array of files

Pigeon::attach([
    [
     'path' => '/path/to/file/attachment1'
     'options' => []
    ],
    [
     'path' => '/path/to/file/attachment2'
     'options' => ['as' => 'Attachment 2', 'mime' => 'pdf']
    ]
])

Setting the Message View Properties

####Set layout view file:

Pigeon::layout('emails.layouts.my_layout_view')

####Set template view file:

Pigeon::template('emails.templates.my_template_view')

####Passing View Variables:

Passing simple variables:

Pigeon::pass([
 'stringVariable' => 'test string', 
 'intVariable' => 2, 
 'boolVariable' => true
])

Passing object variables:

$user = new User();
$user->first_name = 'John';
$user->last_name = 'Doe';
Pigeon::pass([
 'userObjectVariable' => $user
])

If pass() is used more than once it will merge previously passed variables with the current passed set.

Note: Make sure all variables pre-defined in your layout and template view files are passed to your Pigeon message.

####Clearing View Variables:

Clear all previously passed view variables

Pigeon::clear()

Custom Messages Types

Custom message types will be configured in the config/pigeon.php file. In this file you can find examples on how to properly set up a custom message type.

Default:

Set your defaults for all messages sent with Pigeon in config\pigeon.php

'default' => [
    'to' => [],
    'cc' => [],
    'bcc' => [],
    'replyTo' => [],
    'from' => [], // if nothing is entered here, your mail.php default will still be used
    'sender' => [],
    'attachments' => [],
    'subject' => 'Pigeon Delivery',
    'layout' => 'emails.layouts.default',
    'template' => 'emails.templates.default',
    'message_variables' => []
]

####Load Custom Message:

Set your defaults for a particular message type to be sent with Pigeon in config\pigeon.php

'custom_message_type' => [
    'from' => ['from@myapp.com' => 'My Custom App'],
    'subject' => 'My Pigeon Custom Message',
    'layout' => 'emails.layouts.default',
    'template' => 'emails.templates.default'
]

This will load all the message properties from your config defined for custom_message_type.

Pigeon::type('custom_message_type');

Order of Loading:

Default -> Custom Message (if set and loaded) -> Properties set with individual Pigeon functions

Sending the Message

####Send Message:

Pigeon::send();

####Send Raw Message:

Pass a string as a param for the send() function and it will use the string as a raw message send and will ignore any view files or view variables assigned.

Pigeon::send('This is my raw message');

Example - Using it all together

Pigeon::to(['john.doe@domain.com', 'jane.doe@domain.com'])
->cc('fred.doe@domain.com')
->bcc('george.doe@domain.com')
->subject('This is the Subject')
->attach('/path/to/file/attachment')
->layout('emails.layouts.my_layout_view')
->template('emails.templates.my_template_view')
->pass(['firstVariable' => 'test string', 'secondVariable' => 2, 'thirdVariable' => true])
->send();

Example - Simple call

Pigeon::to('me@domain.com')->subject('Testing Pigeon')->send('Sending myself a quick raw message');

Example - Sending a custom message

Pigeon::type('custom_message_type')->to('me@domain.com')->send();

Usage as a Passed Dependency

To pass Pigeon as a dependency will will pass the interface Larablocks\Pigeon\PigeonInterface. For now the only library that implements this interface is Larablocks\Pigeon\IlluminateMailer provided by Laravel but we want to allow for other mailing libraries to be used in the future. The config/pigeon.php config file for Pigeon automatically sets IlluminateMailer as the default mailer library for you.

'library' => 'IlluminateMailer',

###Passing Pigeon to a constructor:

public function __construct(Larablocks\Pigeon\PigeonInterface $pigeon) 
{
$this->pigeon = $pigeon;
}

###Starting a new default message:

$this->pigeon->to('me@domain.com')->subject('Pigeon Raw Test Message')->send('Sending myself a quick raw message');

###Starting a new custom message type:

$this->pigeon->type('custom_message_type')->to('me@domain.com')->send();

License

Pigeon is open-sourced software licensed under the MIT license

larablocks/pigeon 适用场景与选型建议

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

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

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

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

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

BUG 修复 & 性能优化

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

项目外包 & 长期维护

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

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

统计信息

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

GitHub 信息

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

其他信息

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