May 24, 2010
Oh hi! I’ve been busy organizing preDevCamp Baltimore 2010. I’ll be posting on the preDevCamp blog more than here. Check back after June 5th.
Read the full article →
April 15, 2010
Swift Mailer is turning out to be a good change from PHP Mailer. I need to setup a PHP application to send notifications via a Gmail account and PHP wasn’t working out. Here’s my working Swift Mailer code: require_once(‘lib/swift_required.php’); try { $message = Swift_Message::newInstance(); $message->setSubject( “Email Subject” ); $message->setBody( “Email Body”, ‘text/html’); $message->setFrom( array( “bob@example.com” [...]
Read the full article →