Advertisement
Guest User

Untitled

a guest
Dec 16th, 2015
319
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. MAIL_DRIVER=smtp
  2. MAIL_HOST=smtp.gmail.com
  3. MAIL_PORT=587
  4. MAIL_USERNAME=********@gmail.com //email address
  5. MAIL_PASSWORD="*******" //password for that email
  6. MAIL_ENCRYPTION=tls
  7.  
  8. Route::get('/email', function(){
  9. $data = array(
  10. 'name' => "Rongin Library",
  11. );
  12. Mail::send('mailview',$data,function($message){
  13. $message->from('ronginlibrary@gmail.com','Rongin Library');
  14. $message->to('shafi.cse.buet@gmail.com')->subject('Confirmation mail.');
  15. });
  16.  
  17. return "A email has been sent to you. Check inbox. Also check spambox if not in inbox.";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement