Currently I'm building a website for a customer using Ruby on Rails. I planning to host that site on heroku.com.

My customer already has a running website on a specific domain, let's say example.com. The service he uses includes a mailing service with a webinterface he uses. So mails at support@example.com will go there. Upon redirecting example.com to the new address those mails will go to that new address too, won't they?

So there we are. I really don't want to mess around with all that mail-stuff. So I see two basic options:

  1. simply forward all incoming mail to an appropriate mail service
  2. there is a very simple way to build up a mailing webinterface at heroku.com or in my rails app

Anyone has an alternative or can help with one of my approaches? Sorry for asking such a general question but I'm really new to this kind of problem.

link|improve this question
Can anyone explain to me why my question is not suitable for stackoverflow? I've read FAQs and don't think I'm doing anything wrong. Please let me understand! – Arne L. Nov 21 '11 at 12:39
feedback

closed as off topic by Martin, VMAtm, Tim Post Nov 21 '11 at 11:15

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

1 Answer

As you've found, Heroku doesn't provide any kind of email hosting. You can use SendGrid for delivering messages from your application but for receiving emails it's bring your own. I would suggest looking round for an email host - personally I use Google Apps for hosting my email, it works very well (and the personal use is free although the paid one is only about $25 pa per user) but some people fear the Goog'.

Ideally you don't want to rely on the current hosting service - is it something that is paid for? Would your customer not want to cancel the service? I've found that you're much better of disassociating your email hosting from your web hosting so they can operate independently but it would mean you have to "mess around with all that mail-stuff"

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.