Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Cloud9 with Ruby on rails doesn't send emails

I'm new to rails and I'm trying to send emails through Ruby on Rails on the Cloud9 IDE however I am not receiving any even though it says it was successful.

Rendered invitation_mailer/invitation_email.html.erb (1.0ms)
Emailing invitation to [email protected]

InvitationMailer#invitation_email: processed outbound mail in 18.2ms

Is there a special configuration that I need to apply to Cloud9 to make it work?

like image 747
Alexander Yurchenko Avatar asked May 09 '26 05:05

Alexander Yurchenko


1 Answers

Please note that ports 25, 587, and 465 are blocked from Cloud9 to the outside. Please try to run your mail server on a port like 2587.

like image 97
lcipriani Avatar answered May 11 '26 17:05

lcipriani