mailmotor / mailchimp-bundle
这个Symfony2扩展可以将MailChimp加载为一个服务。因此,您可以订阅/取消订阅成员到MailChimp。
4.0.0
2023-03-16 09:17 UTC
Requires
- php: ^7.4||^8.0
- mailchimp/marketing: ^3.0
- mailmotor/mailmotor-bundle: ^4.0
Requires (Dev)
- phpunit/phpunit: ^9.6
- dev-master
- 4.0.0
- 3.0.7
- 3.0.6
- 3.0.5
- 3.0.4
- 3.0.3
- 3.0.2
- 3.0.1
- 3.0.0
- 2.0.0
- 1.5.1
- 1.5.0
- 1.4.2
- 1.4.1
- 1.4.0
- 1.3.3
- 1.3.2
- 1.3.1
- 1.3.0
- 1.2.0
- 1.1.8
- 1.1.7
- 1.1.6
- 1.1.5
- 1.1.4
- 1.1.3
- 1.1.2
- 1.1.1
- 1.1.0
- 1.0.2
- 1.0.1
- 1.0.0
- 0.1.1
- 0.1.0
- 0.0.1
- dev-dependabot/composer/guzzlehttp/psr7-2.5.0
- dev-fixes
- dev-php-7-1
- dev-refactoring
This package is not auto-updated.
Last update: 2024-09-12 16:24:19 UTC
README
订阅/取消订阅自己的邮件列表从未如此简单!多亏了这个Symfony2扩展。
示例
配置(MailChimp)
composer require mailmotor/mailchimp-bundle
public function registerBundles() { $bundles = array( // ... new MailMotor\Bundle\MailMotorBundle\MailMotorMailMotorBundle(), new MailMotor\Bundle\MailChimpBundle\MailMotorMailChimpBundle(), );
mailmotor.mail_engine: 'mailchimp' mailmotor.api_key: xxx # enter your mailchimp api_key here mailmotor.list_id: xxx # enter the mailchimp default list_id here
订阅
$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 );
取消订阅
$this->get('mailmotor.subscriber')->unsubscribe( $email, $listId // OPTIONAL, default listId is in your config parameters );
存在
$this->get('mailmotor.subscriber')->exists( $email, $listId // OPTIONAL, default listId is in your config parameters );
是否已订阅
$this->get('mailmotor.subscriber')->isSubscribed( $email, $listId // OPTIONAL, default listId is in your config parameters );
订阅的完整示例
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 } }
取消订阅的完整示例
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 } }
扩展
为其他邮件引擎创建一个扩展包。
例如:您想要使用一个名为"Crazy"的邮件引擎。
public function registerBundles() { $bundles = array( // ... new Crazy\Bundle\MailMotorBundle\CrazyMailMotorBundle(), );
在 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
然后您只需要复制另一个邮件引擎的所有文件,例如:"mailmotor/mailchimp-bundle",并替换所有您自己的邮件引擎的逻辑。