Hi,
I have a rails app which sends email via gmail; working great.
I’m next looking to set up multiple gmail accounts.
I want action A to generate an email from gmail account A … and
action B to generate an email from gmail account B.
Is this possible?
Thanks in advance,
Charlie
Hi
Pls check below link.I think it help you …
Brijesh S.
charliep wrote:
Hi,
I have a rails app which sends email via gmail; working great.
I’m next looking to set up multiple gmail accounts.
I want action A to generate an email from gmail account A … and
action B to generate an email from gmail account B.
Just munge the “From:” header to say whatever you like.
Is this possible?
Thanks in advance,
Charlie
Best,
Marnen Laibow-Koser
http://www.marnen.org
[email protected]
Thanks … I’m going to go with dynamically loading the settings.
Charlie
On Oct 8, 7:17 am, Marnen Laibow-Koser <rails-mailing-l…@andreas-
If your app is really getting this involved, I’d recommend that you
just set up a real mail server on your Rails host and do it properly.
Also note that the Gmail for Domains stuff has (at least in the free
version) a hard limit of 500 unique To: addresses per day.
Alternatively, you could also look into a service like AuthSMTP, and
just set up a postfix instance that forwards the mails to them.
–Matt J.