Master Symfony2 fundamentals

Be trained by SensioLabs experts (2 to 6 day sessions -- French or English).
trainings.sensiolabs.com

L'audit Qualité par SensioLabs

200 points de contrôle de votre applicatif web.
audit.sensiolabs.com

How to send emails in symfony 1.1 by Romain Dorgueil – June 10, 2008 – 21 comments

Sending mails is a web developer's everyday task, and symfony 1.1 let you do this easier than ever using Swift Mailer.

Swift Mailer is a well thought, fully featured PHP5 object library that will cover 120% of your mailing needs.

It is available in a tagged SVN repository, so your project won't break just because the library is updated. It will be up to you to switch to a newer version.

Symfony's way to send emails from a project is very simple. You create a partial or a component that will render the e-mail content, and use Swift to send it in a flexible way.

Installing

If your project is already using svn, you can install it using the svn:externals property:

$ cd /path/to/symfony/project
$ mkdir -p lib/vendor
$ svn propedit svn:externals .

Then add the following line:

swift http://swiftmailer.svn.sourceforge.net/svnroot/swiftmailer/tags/php5/3.3.3/lib/

If your project is not using SVN, you can still get this part as a subversion working copy by checking out the tag.

$ cd /path/to/symfony/project
$ mkdir -p lib/vendor
$ svn checkout http://swiftmailer.svn.sourceforge.net/svnroot/swiftmailer/tags/php5/3.3.3/lib/ swift

Just clear your cache to force class autoloading resolution to be flushed, and you're done with the installation.

Creating a send mail action

As of symfony 1.1 RC2, you can easily get rendered partials and components from an action:

$mailBody = $this->getPartial('mailBody', array('name' => 'John Doe'));

 

or

$mailBody = $this->getComponent('mail', 'mailBody', array('name' => 'John Doe'));

 

Then we send the mail with Swift:

try
{
  /*
   * Create the mailer and message objects
   */
  $mailer = new Swift(new Swift_Connection_NativeMail());
  $message = new Swift_Message('Mail\'s subject', $mailBody, 'text/html');

 
  /*
   * Send
   */
  $mailer->send($message, $mailTo, $mailFrom);
  $mailer->disconnect();

}
catch (Exception $e)
{
  $mailer->disconnect();

 
  // handle errors there
}
 

Sending a multipart email

Some emails are a little more complex than just a partial, and that include multipart emails. The example below sends an email containing both an HTML and a plain text version.

try
{

  /*
   * Create the mailer and message objects
   */
  $mailer = new Swift(new Swift_Connection_NativeMail());
  $message = new Swift_Message('Test mail subject');

 
  /*
   * Render message parts
   */
  $mailContext = array('name' => 'John Doe');
  $message->attach(new Swift_Message_Part($this->getPartial('mail/mailHtmlBody', $mailContext), 'text/html'));
  $message->attach(new Swift_Message_Part($this->getPartial('mail/mailTextBody', $mailContext), 'text/plain'));

 
  /*
   * Send
   */
  $mailer->send($message, $mailTo, $mailFrom);
  $mailer->disconnect();

}
catch (Exception $e)
{
  $mailer->disconnect();

 
  // handle errors there
}
 

This is a very basic example, but you can do much more with multipart mails, by adding inline images or attaching files. More informations is available in the symfony 1.1 cookbook.

Getting documented

The SwiftMailer website if a gold mine of documentation and tutorials.

And of course, the full API reference is available if you need it.

More information and examples are available in the symfony 1.1 cookbook

Add a Comment

You must be connected to post a comment.

Comments RSS

  • gravatar
    #1 Alex said on the 2008/06/10 at 21:42
    Another nice mailer is PHPMailer. It's not as object oriented as Swift is by far, but a bit simpler to use by the looks of it.

    It also supports differents ways of sending mail (smtp, mail(), sendmail) and things like attachments and multi-part messages.
  • gravatar
    #2 Romain Dorgueil (hartym) said on the 2008/06/10 at 21:57
    Swift of course supports all thoose ways too, and even more complex logic like rotating connections to have fallbacks in case one is not available.

    I'll add a chapter on the cookbook about this tomorrow, but everything is of course described in Swift documentation (look at "The connections" chapter on Swift documentation index page)
  • gravatar
    #3 Pierre Minnieur said on the 2008/06/10 at 22:18
    PHPMailer stinks. There are much better solutions out there, Zend_Mail, ezcMail and Swift Mailer, to name some.
  • gravatar
    #4 fabien said on the 2008/06/11 at 08:52
    @Alex: PHPMailer was the library used by symfony 1.0 and it's still packaged with symfony 1.1. That said, PHPMailer is unmaintained, not flexible enough, and rather buggy. Swift Mailer is a great library, PHP5 oriented, with great features and a great extensibility. It really fits nicely with symfony.
  • gravatar
    #5 IsRobot said on the 2008/06/11 at 10:02
    Thanks for the blog Romain. It is good to see these helpful blogs coming regularly. I'll certainly be needing to use email in my 1.1 project so I look forward to trying Swift Mailer. But saying it will cover 120% of my needs does give the impression you are not completely objective :)
  • gravatar
    #6 Pierre Minnieur said on the 2008/06/11 at 10:43
    @IsRobot: Swift Mailer does cover 120% of your needs because it has some fancy features, many other PHP mailer libraries doesn't have. Take a deeper look into Swift and you'll see that becomes awesome at some point ;)
  • gravatar
    #7 Christopher Brunsdon said on the 2008/06/11 at 10:59
    Great - just in time. Im using PHPMailer in some old code and needed an alternative to move forward with my project. :-)
  • gravatar
    #8 Phennim said on the 2008/06/11 at 11:50
    Nice blog activity.

    quick question though,
    doesn't the getPartial support the format/mime-type stuff that is described in the iPhone blog post?

    $this->getPartial('body', $c) gets _body.php (html partial)
    $this->getPartial('body', $c, 'txt') gets _body.txt.php (plain text partial)
  • gravatar
    #9 Romain Dorgueil said on the 2008/06/11 at 16:57
    The cookbook article has been updated to include different connection settings and how to use gmail as sender-agent.

    You can read this on http://www.symfony-project.org/cookbook/1_1/email
  • gravatar
    #10 hindDeess said on the 2008/06/15 at 04:55
    <a href=http://www.geocities.com/tonyhartmann79/ > http://www.geocities.com/tonyhartmann79/ </a>
    <a href=http://founnitony.wordpress.com/ > http://founnitony.wordpress.com/ </a>
    <a href=http://orlecino.0catch.com > http://orlecino.0catch.com </a>
    <a href=http://desaaloc.20m.com > http://desaaloc.20m.com </a>
    <a href=http://astrothink.blog.com/ > http://astrothink.blog.com/ </a>
    <a href=http://korovka.fcpages.com/high-quality-leather-sofa4.html>bag connecting handle leather making saddle together</a>
    <a href=http://korovka.fcpages.com/davidson-harley-jacket-leather5.html>blackberry 7105t premium leather case buy</a>
    <a href=http://korovka.fcpages.com/jacket-leather-pelle-pelle6.html>leather bench seats for chevy pickup</a>
  • gravatar
    #11 UnonsMusFaino said on the 2008/06/17 at 22:40
    <a href=http://generqwe.150m.com/courtofdomesticrelationsglower3.html>1982 750 honda v45</a>
    <a href=http://generqwe.150m.com/highreliefdisinter4.html>denver honda used civic</a>
    <a href=http://generqwe.150m.com/tidalfamilycannabidaceae5.html>1999 honda civic vp</a>
    <a href=http://tarankawq.free-site-host.com/cactuswrentesla1.html>95 civic dx honda</a>
  • gravatar
    #12 SosseJawexole said on the 2008/06/18 at 12:57
    <a href=http://dalida4me.247ihost.com/highreliefdisinter4.html>honda civic hatchback pic</a>
    <a href=http://amytony.0catch.com/courtofdomesticrelationsglower3.html>1989 honda prelude si</a>
    <a href=http://generqwe.150m.com/courtofdomesticrelationsglower3.html>1982 750 cb honda</a>
    <a href=http://generqwe.150m.com/tidalfamilycannabidaceae5.html>1999 honda cr 250</a>
    <a href=http://generqwe.150m.com/cactuswrentesla1.html>98 honda civic engine</a>
    <a href=http://tarankawq.free-site-host.com/cactuswrentesla1.html>cover honda leather seat</a>
    <a href=http://dalida4me.247ihost.com/pontificalcivilmarriage2.html>honda sport bike network</a>
    <a href=http://dalida4me.247ihost.com/tidalfamilycannabidaceae5.html>hero honda ambition 135</a>
    <a href=http://tarankawq.free-site-host.com/courtofdomesticrelationsglower3.html>honda civic si engine</a>
    <a href=http://dalida4me.247ihost.com/courtofdomesticrelationsglower3.html>forest city and honda</a>
    <a href=http://generqwe.150m.com/pontificalcivilmarriage2.html>honda civic dx hatchback</a>
    <a href=http://dalida4me.247ihost.com/cactuswrentesla1.html>hero honda company profile</a>
    <a href=http://amytony.0catch.com/highreliefdisinter4.html>carolina dealership honda nc north</a>
    <a href=http://amytony.0catch.com/cactuswrentesla1.html>honda shadow 600 for sale</a>
    <a href=http://amytony.0catch.com/pontificalcivilmarriage2.html>honda element radio antenna</a>
    <a href=http://dalida4me.247ihost.com/immunocompromisedweaning6.html>david mcdavid honda of irving</a>
    <a href=http://tarankawq.free-site-host.com/immunocompromisedweaning6.html>92 accord honda picture</a>
    <a href=http://tarankawq.free-site-host.com/highreliefdisinter4.html>honda accord model kit</a>
    <a href=http://generqwe.150m.com/highreliefdisinter4.html>car dealerships honda wichita</a>
    <a href=http://tarankawq.free-site-host.com/pontificalcivilmarriage2.html>250 f honda vf</a>
    <a href=http://amytony.0catch.com/tidalfamilycannabidaceae5.html>honda off road school</a>
    <a href=http://tarankawq.free-site-host.com/tidalfamilycannabidaceae5.html>26 bike dual honda mountain suspension</a>
    <a href=http://amytony.0catch.com/immunocompromisedweaning6.html>honda dealer chattanooga tennessee</a>
  • gravatar
    #13 Cladadrunda said on the 2008/06/19 at 12:24
    <a href=http://keemki.greatnow.com/balkanmountainrangecactuswren1.html>footjoy woman golf shoes waterproof</a>
    <a href=http://keemki.greatnow.com/teslapontifical2.html>abercrombie accessory clothing new nwt shoes</a>
    <a href=http://keemki.greatnow.com/civilmarriagecourtofdomesticrelations3.html>footloose in my velcro shoes lyrics</a>
    <a href=http://keemki.greatnow.com/glowerhighrelief4.html>how to clean satin shoes</a>
    <a href=http://keemki.greatnow.com/disintertidal5.html>chuck taylor shoes + pink</a>
    <a href=http://keemki.greatnow.com/familycannabidaceaeimmunocompromised6.html>cheap guide lovely shoes.info site special</a>
    <a href=http://keemki.greatnow.com/weaninguncomplete7.html>kick with my pointy shoes</a>
    <a href=http://keemki.greatnow.com/ranchinggenushelianthemum8.html>converse myspace.com shoes site today wore</a>
    <a href=http://keemki.greatnow.com/dipodidaeghostliness9.html>delhi from new shoes sole</a>
    <a href=http://keemki.greatnow.com/wearoutspontaneity10.html>footjoy fusion gel golf shoes</a>
    <a href=http://keemki.greatnow.com/georgewashingtoncompensated11.html>in her shoes dvd cover</a>
  • gravatar
    #14 apasmarmfleet said on the 2008/06/20 at 10:11
    <a href=http://ngxbts.250m.com/honda-civic-vehicle-weight.html>About honda civic vehicle weight</a> <a href=http://ocpwfi.00freehost.com/honda-crv-best-buys.html>i'm sured that it interestingly honda crv best buys</a> <a href=http://txigyl.00freehost.com/2001-honda-civic-parts.html>So 2001 honda civic parts</a> <a href=http://vvmaqd.250m.com/honda-manual-passport-repair.html>i'm sured that it interestingly honda manual passport repair</a> <a href=http://bdtxme.250m.com/honda-accord-wiring-schematic.html>look at it honda accord wiring schematic</a> <a href=http://udoubw.150m.com/darrell-waltrip-honda-franklin.html>i'm sured that it interestingly darrell waltrip honda franklin</a> <a href=http://vvmaqd.250m.com/honda-magna-owners-group.html>So honda magna owners group</a> <a href=http://wyojyl.00freehost.com/honda-civic-turbo-kit.html>look at it honda civic turbo kit</a> <a href=http://htllkb.0catch.com/abs-honda-it-works.html>About abs honda it works</a> <a href=http://eneuir.150m.com/hampshire-hanover-honda-new.html>Look hampshire hanover honda new</a> <a href=http://pnuxny.250m.com/honda-ikatan-indonesia-motor.html>So honda ikatan indonesia motor</a> <a href=http://dfghdt.150m.com/dealer-florida-honda-scooter.html>It's dealer florida honda scooter</a> <a href=http://mneuer.250m.com/honda-c-70-passport.html>About honda c 70 passport</a> <a href=http://exbamu.150m.com/chicago-honda-civic-2006.html>About chicago honda civic 2006</a> <a href=http://ikivzs.150m.com/car-dealer-honda-texas.html>interesting information car dealer honda texas</a> <a href=http://egdpet.250m.com/honda-element-grill-guard.html>i'm sured that it interestingly honda element grill guard</a> <a href=http://zomini.250m.com/honda-four-trax-250.html>helpful information honda four trax 250</a> <a href=http://umiezp.250m.com/honda-accord-high-performance.html>About honda accord high performance</a> <a href=http://sdorni.250m.com/honda-accord-brake-discs.html>About honda accord brake discs</a> <a href=http://kiwinr.408ez.com/honda-passport-fender-flare.html>Look honda passport fender flare</a>
  • gravatar
    #15 griereTal said on the 2008/06/21 at 14:38
    <a href=http://aojupq.greatnow.com/breitling-colt-chrono.html>It's breitling colt chrono</a> <a href=http://aojupq.greatnow.com/colt-38-super.html>interesting information colt 38 super</a> <a href=http://aojupq.greatnow.com/colts-neck-home.html>About colts neck home</a> <a href=http://hugaco.greatnow.com/jordan-sex-tape.html>It's jordan sex tape</a> <a href=http://aojupq.greatnow.com/1873-colt.html>interesting information 1873 colt</a> <a href=http://hugaco.greatnow.com/free-girls-video.html>So free girls video</a> <a href=http://hugaco.greatnow.com/adult-video-sharing.html>i'm sured that it interestingly adult video sharing</a> <a href=http://hugaco.greatnow.com/download-porn-video.html>So download porn video</a> <a href=http://aojupq.greatnow.com/colts-stadium.html>Look colts stadium</a> <a href=http://hugaco.greatnow.com/buy-porno-movies.html>About buy porno movies</a> <a href=http://hugaco.greatnow.com/clip-movie-porn.html>look at it clip movie porn</a> <a href=http://aojupq.greatnow.com/colt-gun-hand.html>helpful information colt gun hand</a> <a href=http://hugaco.greatnow.com/girl-sex-video.html>helpful information girl sex video</a> <a href=http://hugaco.greatnow.com/homemade-sex-movies.html>About homemade sex movies</a> <a href=http://hugaco.greatnow.com/clip-sexy-video.html>look at it clip sexy video</a> <a href=http://aojupq.greatnow.com/airsoft-colt-1911.html>look at it airsoft colt 1911</a> <a href=http://hugaco.greatnow.com/ebony-porn-videos.html>So ebony porn videos</a> <a href=http://aojupq.greatnow.com/45-colt-ammunition.html>So 45 colt ammunition</a> <a href=http://hugaco.greatnow.com/black-porn-video.html>i'm sured that it interestingly black porn video</a> <a href=http://aojupq.greatnow.com/colt-45-long.html>So colt 45 long</a>
  • gravatar
    #16 nonliDaylof said on the 2008/06/22 at 06:44
    <a href=http://www.geocities.com/jonwest@rocketmail.com/> http://www.geocities.com/jonwest@rocketmail.com/ </a> <a href=http://buddygarry77.wordpress.com/> http://buddygarry77.wordpress.com/ </a> <a href=http://transpfuge.wikidot.com/start> http://transpfuge.wikidot.com/start </a>
    <a href=http://jonwest23.free-site-host.com/neelactiniaria1.html>cute teen clothing</a>
    <a href=http://jonwest23.free-site-host.com/gambiaaladdin20.html>confidence self teen</a>
    <a href=http://shoes199.my-place.us/civilmarriagecourtofdomesticrelations3.html>cheap all star converse shoes</a>
    <a href=http://jonwest23.free-site-host.com/fieldgoalnitrification18.html>asian marriage vows</a>
    <a href=http://jonwest23.free-site-host.com/tanzimsalim17.html>asian password hack</a>
  • gravatar
    #17 WaymnamaphCal said on the 2008/06/23 at 07:06
    brownington vt gun browning 3 browning micro midas kelly browning <a href=http://browning78.t35.com/browning-fishing.html>It's browning fishing</a> <a href=http://browning78.t35.com/browning-elizabeth-barret.html>look at it browning elizabeth barret</a> browning 25 cynthia browning browning roller chain browning sprocket <a href=http://browning78.t35.com/browning-gun-parts.html>So browning gun parts</a> <a href=http://browning78.t35.com/22-bl-browning.html>It's 22 bl browning</a> 1917 browning browning hi power holster browning badminton rackets 06 30 browning <a href=http://browning78.t35.com/browning-243.html>look at it browning 243</a> <a href=http://browning78.t35.com/10-browning-gauge-gold.html>About 10 browning gauge gold</a> browning acera browning belgium browning 9mm high power browning hat <a href=http://browning78.t35.com/browning-hydro-fleece.html>interesting information browning hydro fleece</a> <a href=http://browning78.t35.com/belgium-browning-shotguns.html>Look belgium browning shotguns</a> browning micro adrenaline jonathan browning browning poet browning shotguns <a href=http://browning78.t35.com/cheryl-browning.html>Look cheryl browning</a> <a href=http://browning78.t35.com/browning-v-belt.html>helpful information browning v belt</a>
  • gravatar
    #18 tomiectogginy said on the 2008/06/24 at 08:48
    <a href=http://members.lycos.co.uk/aleefastgun/battery-powered-cars.html>it's helpful battery powered cars</a> <a href=http://members.lycos.co.uk/aleefastgun/car-auto-accessories.html>interesting info: 0 auto auto accessories</a> <a href=http://members.lycos.co.uk/aleefastgun/exide-car-battery.html>So exide 9 car battery</a> <a href=http://members.lycos.co.uk/aleefastgun/install-car-speakers.html>So install 9 car speakers</a> <a href=http://members.lycos.co.uk/aleefastgun/car-rental-tucson.html>special 5 cars rental tucson</a> <a href=http://members.lycos.co.uk/aleefastgun/custom-auto-accessories.html>interesting info: custom auto accessories</a> <a href=http://members.lycos.co.uk/aleefastgun/car-battery-maintenance.html>it's helpful 3 cars battery maintenance</a> <a href=http://members.lycos.co.uk/aleefastgun/fox-car-rentals.html>special fox 4 car rentals</a> <a href=http://members.lycos.co.uk/aleefastgun/car-audio-amplifier.html>interesting info: 5 crar audio amplifier</a> <a href=http://members.lycos.co.uk/aleefastgun/car-speaker-wire.html>look at it 8 crar speaker wire</a> <a href=http://members.lycos.co.uk/aleefastgun/kenwood-car-speakers.html>Look kenwood 0 auto speakers</a> <a href=http://members.lycos.co.uk/aleefastgun/yipes-auto-accessories.html>So yipes auto accessories</a> <a href=http://members.lycos.co.uk/aleefastgun/l&m-car-rental.html>it's helpful l&m 7 auto rental</a> <a href=http://members.lycos.co.uk/aleefastgun/car-audio-school.html>look at it 8 cars audio school</a> <a href=http://members.lycos.co.uk/aleefastgun/car-audio-video.html>So 9 cars audio video</a> <a href=http://members.lycos.co.uk/aleefastgun/car-rental-ireland.html>Look 0 auto rental ireland</a> <a href=http://members.lycos.co.uk/aleefastgun/car-audio-battery.html>So 2 car audio battery</a> <a href=http://members.lycos.co.uk/aleefastgun/auto-battery-replacement.html>look at it auto battery replacement</a> <a href=http://members.lycos.co.uk/aleefastgun/changing-a-car-battery.html>interesting info: changing a 9 crar battery</a> <a href=http://members.lycos.co.uk/aleefastgun/auto-accessories-for-less.html>About auto accessories for less</a>
  • gravatar
    #19 kim kardashian and stitsbync said on the 2008/06/25 at 14:47
    <a href=http://kimkar.fizwig.com/free-clips-of-kim-kardashian-sex-tape.html>i'm sured that it interestingly free clips of kim kardashian sex tape</a> <a href=http://kimkar.fizwig.com/kim-kardashian-butt-implants.html>i'm sured that it interestingly kim kardashian butt implants</a> <a href=http://kimkar.fizwig.com/buy-kim-kardashian-sex-tape.html>It's buy kim kardashian sex tape</a> <a href=http://kimkar.fizwig.com/kim-kardashian-anal-sex.html>interesting information kim kardashian anal sex</a> <a href=http://kimkar.fizwig.com/kim-kardashian-sex-tape-fucking.html>i'm sured that it interestingly kim kardashian sex tape fucking</a> <a href=http://kimkar.fizwig.com/kim-kardashian-full-sex-tape-video.html>helpful information kim kardashian full sex tape video</a> <a href=http://kimkar.fizwig.com/kim-kardashian-and-reggie-bush.html>interesting information kim kardashian and reggie bush</a> <a href=http://kimkar.fizwig.com/how-tall-is-kim-kardashian.html>Look how tall is kim kardashian</a> <a href=http://kimkar.fizwig.com/kim-kardashian-sex-tape-watch.html>i'm sured that it interestingly kim kardashian sex tape watch</a> <a href=http://kimkar.fizwig.com/kim-kardashian-trailer.html>Look kim kardashian trailer</a>
  • gravatar
    #20 Boupappambica said on the 2008/06/26 at 10:08
    <a href=http://chduype.e-host.ws/> http://chduype.e-host.ws/ </a>
    <a href=http://oajvncu.00freehost.com/> http://oajvncu.00freehost.com/ </a>
    <a href=http://eudvof.250m.com/> http://eudvof.250m.com/ </a>
    <a href=http://ekieqtc.9cy.com/> http://ekieqtc.9cy.com/ </a>
    <a href=http://fegyopo.b-w-h.com/> http://fegyopo.b-w-h.com/ </a>
    <a href=http://ahvauud.dex1.com/> http://ahvauud.dex1.com/ </a>
    <a href=http://ufxnxox.freehostyou.com/> http://ufxnxox.freehostyou.com/ </a>
    <a href=http://novqlac.freesite.org/> http://novqlac.freesite.org/ </a>
    <a href=http://goxuloq.freewebpages.org/> http://goxuloq.freewebpages.org/ </a>
  • gravatar
    #21 AddeneWen said on the 2008/06/27 at 07:13
    <a href=http://www.geocities.com/bkorunsky/> http://www.geocities.com/bkorunsky/ </a>
    <a href=http://aresasfrend.wordpress.com/> http://aresasfrend.wordpress.com/ </a>
    <a href=http://ppirade.blog.com/> http://ppirade.blog.com/ </a>