When I am trying to sending an email without attachment, its working as well. But when I attach a file, its not working and give me this error message:
Swift_TransportException Connection to tcp://smtp.gmail.com:587 Timed Out
Here is my code:
...
public function build(){
return $this
->subject('Welcome')
->markdown('emails.welcome')
->attach(storage_path('public/files/file.pdf'), [
'as' => 'file.pdf',
'mime' => 'application/pdf'
]);
}
...
Please help!