-1

I'm getting the Swift_TransportException error connecting to tcp://send.one.com:465 (timed out). I tried on other Hosting server it is working.

I need help to resolve this issue with timing out, or sending mail other ways (other than Swift Mailer, which is not supported on my server).

zbee
  • 959
  • 1
  • 7
  • 29

1 Answers1

0

Laravel has a great write-up on using some other mail drivers that are offered / supported, and tuts+ has a good guide on implementing this information.

The first step from this, would be your modifications to the mail configuration file for Laravel which will be the driver, and sendmail settings sort of like so:

'driver' => env('MAIL_DRIVER', 'sendmail'),
'sendmail' => '/usr/sbin/sendmail -bs',

From reading those and tweaking those settings you can avoid Swift Mailer and get some emails out.

zbee
  • 959
  • 1
  • 7
  • 29