$email->body('How the heck are you?'); $email->to('
[email protected]', 'Some Guy'); try { $email->send(); } catch(Fuel\Email\ValidationFailedException $e) { // The validation failed } catch(Fuel\Email\SendingFailedException $e) { // The driver could not send the email } finally { /* Executed regardless of whether an exception has been thrown, and before normal execution resumes */ }