Cloud9 with Ruby on rails not sending emails

I am new to rails and I am trying to send emails via Ruby on Rails in Cloud9 IDE, but I am not getting any even though it says it was successful.

Rendered invitation_mailer/invitation_email.html.erb (1.0ms)
Emailing invitation to example@example.com

InvitationMailer#invitation_email: processed outbound mail in 18.2ms

      

Is there any special configuration I need to apply to Cloud9 for it to work?

+3


source to share


1 answer


Please note that ports 25, 587 and 465 are blocked from Cloud9 outside. Try starting your mail server on a port such as 2587.



+5


source







All Articles