English 中文(简体)
动态修改 Spift Mailler 中的 smtp 设置
原标题:Changing smtp settings in SwiftMailer dynamically
< div class=" s- prose js- post-body" 项prop= "text" >

I 使用 Swift Mailler 和 Symfony 捆绑的捆绑 。 我在 compig.yml 文件里传送我的 smtp 用户/ password 设置, 效果很好, 但我在发送邮件时需要从数据库中获取这个设置 。 我可以看到任何设置选项 : < preçcode > $mailer = $this- gt; getContaner ()- get; get (mailer) - & get; get; get; get; (); < ; < /code{/ pre> < p> 但是在运行时可以更改这些设置吗?

问题回答

Many thanks, but it s not the solution i was looking, on kernel request I don t know which account I ll use. I needed to change settings inside my send mail loop. I found pretty cool solution:

foreach ($locations as $location) {
    // get settings for account
    $user = $location->getSmtpUser();
    $pass = $location->getSmtpPass();

    // switch to new settings
    $transport = $this->getContainer()->get( mailer )->getTransport();            
    $ext = $transport->getExtensionHandlers();
    $auth_handler = $ext[0];            
    $auth_handler->setUserName($user);
    $auth_handler->setPassword($pass);

    // send message using new settings
    $message = Swift_Message::newInstance()
         ->setSubject( $subject )
         ->setFrom( $from )
         ->setTo( $email )
         ->setBody( $body )
         ->setContentType( text/html );

       $this->getContainer()->get( mailer )->send( $message );    
}

您可以创建一个 < code> 内核 。 请求 事件收听器, 输入 < code> swiftmailer. transport. real 并设置 smpt info, 例如 。

听众班

namespace NamespaceOfYourListener;

use SymfonyComponentEventDispatcherEventSubscriberInterface;
use SymfonyComponentHttpKernelEventGetResponseEvent;

class YourListener implements EventSubscriberInterface
{

    /**
     * @var Swift_Transport_EsmtpTransport
     */
    private $transport;

    /**
     * @var DoctrineORMEntityManager
     */
    private $em;

    public function __construct($transport, $em)
    {
        $this->transport = $transport;
        $this->em = $em;
    }

    public function onKernelRequest(GetResponseEvent $event)
    {
        //fetch info from db
        $this->transport->setHost("host");
        $this->transport->setPort("port");
        $this->transport->setUserName("username");
        $this->transport->setPassword("pass");
    }

    static public function getSubscribedEvents()
    {
        return array(
            KernelEvents::REQUEST => array( onKernelRequest , 0)
        );
    }

}

服务减速,

your_listener:
    class: FQCNOfYourListener
    tags:
        - { name: kernel.event_listener, event: kernel.request, method: onKernelRequest }
    arguments: [@swiftmailer.transport.real, @doctrine.orm.entity_manager]

我知道这有点老了,但是我想在它帮助别人的情况下得到答案。我们正在使用带有 SMTP 运输工具的文件支架,并且需要根据网站建立定制的 SMTP 服务器连接。

我们的解决方案是修改 Swift mailer, 以允许对每条电文添加一些数据, 并将它连接到 Symfony2 s Enterprises Re快递器中。 这让我们得以从每条电文中提取连接信息, 在冲水时 。

我们把它做了成一个捆包,这样它就可以被其它人利用。您可以读到 这里

In fact, you should call $transport->stop(); because in other way Swift Mailer will not reconnect and old setting will be used during 1 script execution





相关问题
Sending an HTML email using Swift

I would like to send an auto-generated email with HTML body from my application using Swift. Here is my current code: $message = Swift_Message::newInstance() ->setFrom(array( ...

Why is SwiftMailer throwing "Internal Server Error"?

I am using Symfony + SwiftMailer and getting the following error from SwiftMailer: 500 | Internal Server Error | Swift_TransportException Expected response code 220 but got code "", with message "" ...

Swift Mailer Error

Im using the following code to send a message: try { require_once "lib/Swift.php"; require_once "lib/Swift/Connection/SMTP.php"; $smtp =& new Swift_Connection_SMTP("mail.somedomain....

Swift Mailer email sending issue

i have downloaded Swift Mailer from their website and try to send simple email with following code <?php require_once lib/swift_required.php ; $transport = Swift_SmtpTransport::...

symfony 1.4 adding a BCC recipient to mailer

I know with swift directly you can create a Recipient_List and do ->addBcc() . How would i do this same thing in the context of symfony 1.4 $message = $this->getMailer()->compose(); $message-&...

Email body in Symfony 1.4 mailer?

I m using the Symfony 1.4 mailer where I build the various bits needed for an email and then send it out using: $this->getMailer()->composeAndSend($sender, $recipient, $subject, $body); In the ...

Unable to send mail in Symfony 1.31

I am trying to send email using the following method in my action class: public function executeTestnewmail() { // send an email to the affiliate $message = $this->getMailer()->...

热门标签