Advertisement
Guest User

mail check laravel

a guest
Jan 27th, 2015
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. Mail::send(...)
  2.  
  3. if( count(Mail::failures()) > 0 ) {
  4.  
  5. echo "There was one or more failures. They were: <br />";
  6.  
  7. foreach(Mail::failures as $email_address) {
  8. echo " - $email_address <br />";
  9. }
  10.  
  11. } else {
  12. echo "No errors, all sent successfully!";
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement