-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hello Community,
I successfully send Mails via SMTP using my Rails App and my Postfix Server. Now I need to move to an Exchange: Microsoft ESMTP MAIL Service, Version: 6.0.3790.3959 that has POP3 and SMTP support enabled.
I use actionmailer 1.2.5 and am not able to successfully login to the server…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
My enviroment.rb is like this:
ActionMailer::Base.default_params = {:charset => "iso-8859-1"}
wich should be enough for accents, but here is how the subject of message is been sent:
Convite para participação de projeto
Does anyone know what I have to do to fix it?
Thanks
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I've been working on learning to use Rails the last couple days and I've run into something that I haven't been able to solve with Google.
So I'm just creating a basic contact form that sends an email. Everything seems to be working ok in testing, which tells me that the form is working, and ActionMailer…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Googled for this to no avail. Didn't find anything in the API either. I was expecting some kind of class method or configuration option to set it...
So, rather than calling
from "[email protected]"
for every method, it could be called automatically.
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm using the following config:
ActionMailer::Base.smtp_settings = {
:address => "smtp.gmail.com",
:port => 587,
:authentication => :plain,
:enable_starttls_auto => true,
:user_name => "[email protected]",
:password => "sap"
}
When I send the mail, log shows mail is…
>>> More