Same question here. We love the forge/do combo but the only issue we have right now is sending/receiving mails through a decent/nonspammy mailserver. Maybe there's an external service we could use? Any suggestions?
Sending/receiving mail with forge/digital ocean
Hey all,
Im using forge + digital ocean, im trying to send and receive mail with my Laravel application. The way im trying to get this done is using the main mail server from my domain name registering company. They have SMTP settings that i used inside mail.php.
'driver' => 'smtp',
'host' => 'mail.axc.nl',
'port' => 465,
'from' => array('address' => 'info@example.com', 'name' => 'My Name'),
'encryption' => '',
'username' => 'info@example.com',
'password' => 'mypassword',
However im getting the error : Expected response code 250 but got code "", with message ""
Does anyone have a suggestion how i could fix this? Or another way to achieve sending/receiving mail through smtp.
@semgov if you haven't figured it out yet, i found the solution to my problem. I had to change the DNS settings in digitalocean. And i needed to point the nameservers from my domainname registration company to the ones that match digital ocean. How you can do that can you find here: https://www.digitalocean.com/community/tutorials/how-to-point-to-digitalocean-nameservers-from-common-domain-registrars
Good luck and let me know if it helped you!
Please or to participate in this conversation.