mailmotor/mailmotor-bundle
Composer 安装命令:
composer require mailmotor/mailmotor-bundle
包简介
This Symfony bundle loads in MailMotor as a service. So you can subscribe/unsubscribe members to any mailinglist managing API. F.e.: MailChimp, CampaignMonitor, ...
README 文档
README
Subscribing/Unsubscribing to your own mailinglist has never been this easy! Thanks to this Symfony bundle.
Installation
How to configure MailChimp
composer require mailmotor/mailchimp-bundle
// In `app/AppKernel.php` public function registerBundles() { $bundles = array( // ... new MailMotor\Bundle\MailMotorBundle\MailMotorMailMotorBundle(), new MailMotor\Bundle\MailChimpBundle\MailMotorMailChimpBundle(), );
# In `app/config/parameters.yml` parameters: # ... mailmotor.mail_engine: 'mailchimp' # or another mailmotor engine mailmotor.api_key: xxx # enter your mailchimp api_key here mailmotor.list_id: xxx # enter the mailchimp default list_id here
Examples
Subscribing
$this->get('mailmotor.subscriber')->subscribe( $email, // f.e.: 'info@jeroendesloovere.be' $language, // f.e.: 'nl' $mergeFields, // f.e.: ['FNAME' => 'Jeroen', 'LNAME' => 'Desloovere'] $interests, // f.e.: ['9A28948d9' => true, '8998ASAA' => false] $doubleOptin, // OPTIONAL, default = true $listId // OPTIONAL, default listId is in your config parameters );
Unsubscribing
$this->get('mailmotor.subscriber')->unsubscribe( $email, $listId // OPTIONAL, default listId is in your config parameters );
Exists
$this->get('mailmotor.subscriber')->exists( $email, $listId // OPTIONAL, default listId is in your config parameters );
Is subscribed
$this->get('mailmotor.subscriber')->isSubscribed( $email, $listId // OPTIONAL, default listId is in your config parameters );
Full example for subscribing
use MailMotor\Bundle\MailMotorBundle\Exception\NotImplementedException; // Don't forget to add validation to your $email $email = 'info@jeroendesloovere.be'; try { if ($this->get('mailmotor.subscriber')->isSubscribed($email)) { // Add error to your form } // Fallback for when no mailmotor parameters are defined } catch (NotImplementedException $e) { // Do nothing } if ($noErrors) try { // Subscribe the user to our default group $this->get('mailmotor.subscriber')->subscribe( $email, $language, $mergeFields ); // Fallback for when no mailmotor parameters are defined } catch (NotImplementedException $e) { // Add you own code here to f.e.: send a mail to the admin } }
Full example for unsubscribing
use MailMotor\Bundle\MailMotorBundle\Exception\NotImplementedException; // Don't forget to add validation to your $email $email = 'info@jeroendesloovere.be'; try { // Email exists if ($this->get('mailmotor.subscriber')->exists($email)) { // User is already unsubscribed if ($this->get('mailmotor.subscriber')->isUnsubscribed($email)) { // Add error to your form: "User is already unsubscribed" } // Email not exists } else { // Add error to your form: "email is not in mailinglist" } // Fallback for when no mailmotor parameters are defined } catch (NotImplementedException $e) { // Do nothing } if ($noErrors) { try { // Unsubscribe the user $this->get('mailmotor.subscriber')->unsubscribe($email); // Fallback for when no mailmotor parameters are defined } catch (NotImplementedException $e) { // We can send a mail to the admin instead } }
Extending
Creating a bundle for another mail engine.
F.e.: You want to use a mail engine called "Crazy".
public function registerBundles() { $bundles = array( // ... new Crazy\Bundle\MailMotorBundle\CrazyMailMotorBundle(), );
In app/config/parameters.yml
mailmotor.mail_engine: 'crazy' mailmotor.api_key: xxx # enter your crazy api_key here mailmotor.list_id: xxx # enter the crazy default list_id here
Then you just need to duplicate all files from another mail engine, like f.e.: "mailmotor/mailchimp-bundle" and replace all the logic for your own mail engine.
Credits
mailmotor/mailmotor-bundle 适用场景与选型建议
mailmotor/mailmotor-bundle 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 205.6k 次下载、GitHub Stars 达 3, 最近一次更新时间为 2015 年 11 月 27 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「symfony」 「php」 「bundle」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 mailmotor/mailmotor-bundle 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 mailmotor/mailmotor-bundle 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 mailmotor/mailmotor-bundle 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
2lenet/EasyAdminPlusBundle
The bundle for easy using json-rpc api on your project
Provide a way to secure accesses to all routes of an symfony application.
DMS Meetup API Bundle, enables Meetup API clients in services
Bundle Symfony DaplosBundle
Provides a Data Grid tables for your Symfony project.
统计信息
- 总下载量: 205.6k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 4
- 点击次数: 35
- 依赖项目数: 3
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-11-27