similar to: Action Mailer 3.2.9 retruns duplicates in deliveries array

Displaying 20 results from an estimated 3000 matches similar to: "Action Mailer 3.2.9 retruns duplicates in deliveries array"

2005 May 30
2
Testing action mailer in functional tests - missing section in the book
Hi ! I just need a pointer on how to do functional testing of ActionMailer. My unit test for the ActionMailer is working fine - now I simply need to assert that it''s being called in my Controller. The testing book ends quite abruptly at http://manuals.rubyonrails.com/read/chapter/64 I searched around on the web, but I didn''t find anything very conclusive. Thanks, François
2006 May 04
0
Action Mailer Errno::EPIPE using different character sets
1. On my Windows development system everything is fine. 2. On my Linux production server I get an Errno::EPIPE (Broken pipe) error when sending an email using Action Mailer. The specific situation is this: a) Rails 1.1.2 b) The application is running UTF8, but I want to send my emails as ISO-8859-1. c) Sending UTF-8 emails works fine. d) Delivery method is SMTP. e) When using this code
2009 Mar 21
0
Action Mailer problem
Hello, I''m trying to make my rails app send mail. I''m using Postfix + Dovecot + SASL on Linux Debian VPS: http://www.debianadmin.com/debian-mail-server-setup-with-postfix-dovecot-sasl-squirrel-mail.html I''m using the following configuration in environment.rb: config.action_mailer.delivery_method = :smtp config.action_mailer.smtp_settings = { :address =>
2006 Jun 05
1
Action Mailer contact form
I am trying to use Rails and the Action mailer to create a simple contact form on a website. I am using a table-less model to validate the form contents, then trying to use the Action Mailer chapter of the "Agile Web Development with Rails" book as a pattern to develop the send e-mail portion. I am having trouble getting it working and was hoping someone could point me in the
2013 Mar 23
0
Rails4 and ActionMailer::Base.deliveries
Can someone who is working with Rais 4 verify if ActionMailer::Base.deliveries returning valid data or an empty set? I''m looking at the ActiveMailer source code and changelog and nothing jumps out at me. This is with the same code and configuration that worked for me in Rails 3.x but now with Rails 4.0.0.beta1 and Ruby 1.9.3p374. delivery_method is set to :test in both my
2008 Sep 02
3
Unable to set default_url_options[:host] for Action Mailer
I am attempting to provide ActionMailer with the request host needed to generate a url. Here is my code: In config/environments/development.rb config.action_mailer.default_url_options = { :host => "development_url.com" } and in config/environments/production.rb config.action_mailer.default_url_options = { :host => "production_url.com" } When I run the above code
2011 Nov 01
2
Duda con action mailer
Hola, soy nuevo en RoR y tengo un problema con action mailer cuando uso el rubygem el gestor de paquetes y pongo: gem list --local me sale: actionmailer <1.2.5> lo cual indica que lo tengo instalado, el proble a es el siguiente he configurado el fichero environment.rb para poder trabajar con actionmailer , he creado el formulario y casi todo lo que necesito el punto critico llega cuando
2008 Mar 04
2
Action Mailer throwing underscores on template name
I''ve recently run into a problem with one of my applications that refuses to send emails using ActionMailer. Looking at the log, it become obvious what''s happening, the system is looking for templates with underscores at the end. Notice the exception_notification_ . For example: ActionView::ActionViewError (No rhtml, rxml, rjs or delegate template found for
2006 Jan 24
4
SMTPSyntaxError with Action Mailer
I''ve been trying to get my action mailer powered form to work all day. I can get it to work perfectly in development mode. But when I run it in production mode I get an error, the log spits this out Net::SMTPSyntaxError (501 Syntax: HELO hostname ): /usr/lib/ruby/1.8/net/smtp.rb:680:in `check_response'' /usr/lib/ruby/1.8/net/smtp.rb:653:in `getok''
2006 Jun 27
4
Action Mailer - weird rendering issues
Hello, While sending email notifications from ThoughtNotifier, I am getting weird exceptions, which sometimes occur on the production machine, but I haven''t been able to reproduce on my development machine. There should be no error while rendering `thought_notifier/share_notification.rhtml'' template, but if for some reason it is rendering
2006 Nov 04
0
action mailer and IMAP
I''m trying to figure out if I can use the ActionMailer and Rails for a IMAP reading application. It''s not a web mail application. But I don''t really see where the boundaries are for a Model, Controller, View. Or is it simply that everything related to reading the email via IMAP (which is going to be started from shell via crontab or other) is a Model and everything
2006 Jun 21
0
Action Mailer and ApplicationHelper method
Hi, sorry if this has been asked before, but I couldn''t find any info. Is it possible to use application helper methods in ActionMailer templates (or methods, in case this is the only way)? All I found is one statement in the agile web development book, that ''the regular helper methods, such as truncate(), are available''. Is there any overview which helpers are
2006 Apr 13
0
Action mailer ''Content-Type'' found without required MIME hea
In my application i use the actionmailer. When i send a message to myself my spamfilter noticed the following error MIME_HEADER_CTYPE_ONLY ''Content-Type'' found without required MIME headers AND MIME_HTML_NO_CHARSET RAW: Message text in HTML without charset Is there a way to fix this? Thanks in advance -- Posted via http://www.ruby-forum.com/.
2008 Mar 31
0
Action Mailer Problem with salted hash login generator
Hi! Guys I am using the salted hash login generator for login purpose. Now, I am working in friendship. When I want to request someone for friendship request via the action mailer I get following error: ===================================== Due to changes in ActionMailer, you need to provide the mailer_name along with the template name. render "user_mailer/signup" render :file
2009 Jun 25
3
error with gssapi
Hello I found on ovirt.org instruction for set unavailable(enable) to available(enable) i run "ruby /usr/share/ovirt-server/qmf-libvirt-example.rb" and get Error caching credentials; attempting to continue... Connecting to amqp://main.forex-24h.com:5672.. /usr/lib/ruby/site_ruby/1.8/qpid/delegates.rb:209:in `connection_start'/usr/lib/ruby/site_ruby/1.8/qpid/delegates.rb:209:
2012 Jul 06
2
ActionMailer::Base.deliveries returns array with duplicated elements in production env
Hello, I am testing for email sending from my app and I have a scenario that passes in test env but not in production. When I make dump of ActionMailer::Base.deliveries I saw that it returns array with duplicated elements in production env but not in test env. I am using sqlite3 for test env and mysql for production. Also I use delayed_job. Does anyone had the same issue? Thanks in advance :)
2006 Mar 17
2
How do I use ''reply-to'' with Action Mailer
Hey there folks, I''m sure there is a stupidly easy answer for this, but I can''t seem to find it. I''m building a site and I want a way for one user to contact another. Simple enough. The problem lies in the fact I want the email to ''come from'' the user, and not from my system. In my ActionMailer class if I do the following: @from =
2007 Nov 07
0
Start Forex Trading as low as US50$
The Easy-Forex™ system enables you to trade with small amounts as well. You can start using Easy-Forex™ even with an amount as little as $50! No bank would ever offer you such an opportunity! Starting to trade with such small amounts is the best way to get acquainted with the Forex marketplace. Ready Now! Click on the link below to start trading and earning easy money Online.
2006 Oct 17
3
action mailer, error Subject: Header must not be multiple
i want to send multiple emails: #my Controller def send_email if params[:group_ids] groups = Group.find(params[:group_ids]) # creates an array called ''groups'' that looks like : [{:id => 1, :title => ''yediot''}, {:id => 2, :title => ''maariv''} ] --- [ 1, 2 ] else groups = [] end names = [] emails = []
2010 Nov 09
3
Rails 3 Action Mailer issue
Hi All, I am trying to send an email on a user sign up. The email is working without any issues. However there is a problem with the :from field that I am specifying. My SMTP setting look like : ActionMailer::Base.smtp_settings = { :address => "smtp.gmail.com", :port => "587", :domain => "test.com",