English 中文(简体)
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->setSubject(sfConfig::get( app_email_welcome_subject ));
$message->setTo($user->getUsername());
$message->setFrom(sfConfig::get( app_email_from ));
最佳回答

compose() return a Swift_Message object, you can use setBcc() or addBcc() methods as you would with swift

问题回答

if you use symfony 1.4 .your code can set

         $message = Swift_Message::newInstance();
         $message->setSubject($subject);
         $message->setFrom($from);
         $message->setBody($body);

         $transport = Swift_SmtpTransport::newInstance(sfConfig::get( app_email_host ), sfConfig::get( app_email_port ),  ssl )
            ->setUsername(sfConfig::get( app_email_username ))
            ->setPassword(sfConfig::get( app_email_password ));
        $mailer = Swift_Mailer::newInstance($transport);

when use it can send email use gmail....

i think you can!

example: http://swiftmailer.org/docs/sending.html





相关问题
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()->...

热门标签