stackinstance/mailer-bundle

Stack Instance 邮件发送器

安装次数: 2,755

依赖项: 0

建议者: 0

安全性: 0

星标: 0

关注者: 1

分支: 0

开放问题: 0

类型:symfony-bundle

2.1.13 2021-08-18 11:35 UTC

README

#Stack Instance 邮件发送器包

安装方法

composer require stackinstance/mailer-bundle

使用方法

/**
 * @Route("/mail", name="mail")
 */
public function mailAction()
{
    $mailer     = $this->container->get('stack_instance.mailer');
    $attachment = new Attachment();

    $attachment->attach('/path/to/file/test.csv', 'file.csv', 'text/csv');

    $mailer->send('This is my subject', 'This is the body', 'to@example.org', 'from@example.org', 'cc@address.com', 'bcc@address.com', $attachment);
}

网站

PHP要求

从版本2.0.2开始,Stack Instance 邮件发送器包需要至少php 7.0.0。