Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialSteve Berrill
20,016 PointsDo we not need the send() function to send the mail after we create?
I had a problem, when I submited the form it didn't redirect to / so i moved the project to my server and added this $result = $mailer->send($message); after creating the message. it sends the email to me but just loads blank page upon submitting form. so the create and send code looks like this
// Create a message $message = \Swift_Message::newInstance(); $message->setSubject('Email From Our Website'); $message->setFrom(array( $cleanEmail => $cleanName )); $message->setTo(array('mail@me.com' => 'Steve B')); $message->setBody($cleanMsg); // Send the message $result = $mailer->send($message);