Re: [Rails] Re: Action mailer receive email

2017-09-29 Thread Ben Edwards
good point, deleted the post. On Friday, September 29, 2017 at 4:20:56 PM UTC+1, Hassan Schroeder wrote: > > On Fri, Sep 29, 2017 at 8:10 AM, Ben Edwards > wrote: > > Not read the guide but I simply set up the details of my outgoing SMTP > > server > > which is

Re: [Rails] Re: Action mailer receive email

2017-09-29 Thread Hassan Schroeder
On Fri, Sep 29, 2017 at 8:10 AM, Ben Edwards wrote: > Not read the guide but I simply set up the details of my outgoing SMTP > server which is completely irrelevant to the question of *receiving* mail... -- Hassan Schroeder

[Rails] Re: Action mailer receive email

2017-09-29 Thread Ben Edwards
Not read the guide but I simply set up the details of my outgoing SMTP server in my config/enviroments/production.rb (and development.rb), something like config.action_mailer.perform_deliveries = true config.action_mailer.smtp_settings = { user_name:

[Rails] Re: action-mailer 4.2 question regarding custom templates

2015-10-26 Thread byrnejb
The behaviour of the do-end block with respect to the render method and the template_path/template_name keys in the method argument list is by design. These two keys are intentionally discarded by the render method. However, it there also appears to be a problem when passing the

[Rails] Re: action mailer settings and dkim signing

2015-02-18 Thread Matt Jones
On Saturday, 14 February 2015 21:17:21 UTC-5, Stephen Burke wrote: I am trying to figure out why this block of code in my environments/production.rb file is causing the dkim signing to break. I have email being sent from a rake task with my UserMailer class. It is derived from

[Rails] Re: Action Mailer issue

2013-06-03 Thread andreo
so have you checked if you have a template on the path that he is trying to look for it? On Wednesday, 29 May 2013 14:32:12 UTC+2, amit agarwal wrote: Hi I am using rails 2.3.5 + ruby 1.9.3 i am trying to send mails from application , it working fine , but when i called methods from

[Rails] Re: Action Mailer with Rails

2012-01-20 Thread Bala TS
Hai! I too agree with this... https://github.com/tobi/delayed_job Bye:) bdeveloper01 -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups Ruby on Rails: Talk group. To post to this group, send email to

[Rails] Re: Action Mailer - Proxy Settings.

2011-04-10 Thread avitash
Hello!! I am getting the same problem.. is there any solution to this.??? On Mar 21, 1:56 pm, Charanya Nagarajan li...@ruby-forum.com wrote: Hi, I am developing a rails app on a system which connects to internet through proxy. I am facing difficulties while Action Mailer tries to send

Re: [Rails] Re: Action Mailer - Proxy Settings.

2011-04-10 Thread Bryan Crossland
Sent from my iPhone On Apr 9, 2011, at 2:23 AM, avitash avitashpurohitcs...@gmail.com wrote: Hello!! I am getting the same problem.. is there any solution to this.??? On Mar 21, 1:56 pm, Charanya Nagarajan li...@ruby-forum.com wrote: Hi, I am developing a rails app on a system which

[Rails] Re: action mailer noob

2010-05-21 Thread Bharath
HI , First you need to decide how you want to send emails from a rails app or what options are available. 1. Sendmail : Its a program or application which handles mail delivery. 2. SMPT Server: Either you can set up your own or use third party service like (gmail/yahoo etc) Check this link :

[Rails] Re: Action Mailer new DSL merged

2010-01-26 Thread Olek
Just letting you know we have a new DSL for Action Mailer. I think removing the magic #deliver_* and #create_* methods, and returning an actual Mail object directly by an existing method makes a lot of sense. On the other hand, I think replacing methods like #body, #subject, etc. with a hash is

Re: [Rails] Re: Action Mailer new DSL merged

2010-01-26 Thread Mikel Lindsaar
On Tue, Jan 26, 2010 at 10:29 PM, Olek olek.janiszew...@gmail.com wrote: On the other hand, I think replacing methods like #body, #subject, etc. with a hash is a missed idea, it's harder to write and read, and less clear to grasp, especially when you notice that ActiveRecord API changes in

[Rails] Re: Action Mailer new DSL merged

2010-01-25 Thread Elad Meidar
Nice work! On Jan 25, 9:29 pm, Mikel Lindsaar raasd...@gmail.com wrote: Hi all, Just letting you know we have a new DSL for Action Mailer. class Notifier ActionMailer::Base   delivers_from(sys...@example.com)   def signup_notification(recipient)     @account = recipient    

[Rails] Re: action mailer

2010-01-13 Thread dan
awesome... i am using the restful_authentication plugin modified the mail.rb page to: ActionMailer::Base.delivery_method = :smtp bActionMailer::Base.raise_delivery_errors = true/b ActionMailer::Base.default_content_type = text/html ActionMailer::Base.smtp_settings = { :address =

[Rails] Re: action mailer

2010-01-12 Thread dan
im having similar issues i see message in terminal window, but no email is there another log file or error to look for? ActionMailer::Base.delivery_method = :smtp ActionMailer::Base.default_content_type = text/html ActionMailer::Base.smtp_settings = { :address = smtp.gmail.com, :port =

Re: [Rails] Re: action mailer

2010-01-12 Thread Curtis Cooley
On Tue, Jan 12, 2010 at 4:55 PM, dan mr.dan.ma...@gmail.com wrote: im having similar issues i see message in terminal window, but no email is there another log file or error to look for? ActionMailer::Base.delivery_method = :smtp ActionMailer::Base.default_content_type = text/html

[Rails] Re: action mailer on my local computer

2009-05-17 Thread Stephan Wehner
firelinemx wrote: hi guys i am newbie in ror. i wanna test my simple ror application on windows xp. i use Webrick as my web server. i don't know how to configure my action mailer for sending email to another addresses? config.action_mailer.delivery_method = :smtp

[Rails] Re: Action Mailer does not raise exceptions with Rails 2.3.2

2009-04-28 Thread Rick
I'm running on OSX with either ruby 1.8.7 or 1.9.2dev and rails 2.3.2. Forcing a mail error with config.action_mailer.raise_delivery_errors = true causes a long message to appear in my log that starts: Net::SMTPAuthenticationError (535-5.7.1 Username and Password not accepted. Learn more at

[Rails] Re: Action Mailer Hiding Receipients in the email templates

2008-10-05 Thread [EMAIL PROTECTED]
Is there any way that I can hide the users from each other. which means if I send the mail to n number of people, when each one sees the mail it should say From address as my email address and TO email as your and rest of the email addresses should hide. Please help me how we can do this??

[Rails] Re: Action Mailer Hiding Receipients in the email templates

2008-10-05 Thread Piyush with Rails
I think it should work. let me check. Thanks Narayan.. On Oct 4, 6:37 pm, Narayan [EMAIL PROTECTED] wrote: You can replace recipients with bcc for blind carbon copy. Hope this helps -Narayan On Oct 3, 7:16 pm, Piyush with Rails [EMAIL PROTECTED] wrote: Hi, Anyone have any idea

[Rails] Re: Action Mailer Hiding Receipients in the email templates

2008-10-05 Thread [EMAIL PROTECTED]
BCC is not working I just checked On Oct 5, 12:50 pm, Piyush with Rails [EMAIL PROTECTED] wrote: I think it should work. let me check. Thanks Narayan.. On Oct 4, 6:37 pm, Narayan [EMAIL PROTECTED] wrote: You can replace recipients with bcc for blind carbon copy. Hope this helps

[Rails] Re: Action Mailer Hiding Receipients in the email templates

2008-10-04 Thread Narayan
You can replace recipients with bcc for blind carbon copy. Hope this helps -Narayan On Oct 3, 7:16 pm, Piyush with Rails [EMAIL PROTECTED] wrote: Hi, Anyone have any idea about hiding the receipients address in the email template in TO field. As am Example:  While sending an email to