Tagged Questions
0
votes
0answers
8 views
connection error ActionMailer
I am developing a rails application using Rails 4 and Ruby 2.0.0.
I have a form in my contact page from where I want to send an email to the administrator. I've chosen to work with smtp and here is my ...
0
votes
1answer
13 views
Rails 3.2 ActionMailer not rendering html in production
I have a production machine that is your basic CentOS machine on Amazon AWS, nothing special there.
I am essentially running this:
@digest = WeeklyDigest.most_recent.first
@mailer = ...
0
votes
2answers
17 views
What are the variables accessible from user_mailer.html.erb?
My user_mailer.rb:
class UserMailer < ActionMailer::Base
default :from => "notifications@example.com"
def welcome_email(user)
@user = user
@url = "http://example.com/login"
...
0
votes
0answers
9 views
AWS-SES mail request ID using ruby-sdk
I have been trying to sent out mails using amazon-ses using the ruby-sdk tool and action mailer in Rails3. Can any any one please tell me how will I be able to capture the request Id thats returned by ...
0
votes
0answers
19 views
updating actionmailer specifications for ruby on rails 3
I am updating a mailer to use the new API based on mail rather then tmail. My main referance is http://lindsaar.net/2010/1/26/new-actionmailer-api-in-rails-3. I am running into a bit of confusion as ...
0
votes
0answers
34 views
How to change host for all links in mailers without modifying the views
What I need to do is to include the current host name into all the links generated by mailers.
The problems:
Emails are generated in the background and of course do not have access to the current ...
0
votes
0answers
13 views
Rails 3.2 Action Mailer return html of view
I am building a newletter management tool for my rails app, and integrating it with Mailchimp (via the mandrill gem). I'd like to use ActionMailer to render the views of the newsletter, but instead of ...
0
votes
1answer
18 views
Mailer throwing undefined [] for nil in rails rspec
I have recently started seeing the following error message among my rspec output:
undefined method [] for nil:NilClass
Note this does not make the test fail, it just puts this error message to the ...
1
vote
1answer
27 views
Rails inline mail attachments not working properly
I am using ActionMailer to send an inline image. The user_mailer.rb file looks like this:
def welcome_mail(user, mail_content, subject)
@user = user
@mail_content = mail_content.html_safe
...
0
votes
2answers
45 views
How do I send line break in a Ruby email?
I'm using \n and they are showing up as literal \n
class TestMailer < ActionMailer::Base
def simple_mail(to, subject, body)
mail(:to => to, :subject => subject, :body => body)
...
0
votes
1answer
106 views
NoMethodError: undefined method `email' for nil:NilClass : can't send email with devise/sendgrid(Rails 3.2)
I am trying to use use actionmailer with sendgrid and devise on Rails 3.2.
I browsed many questions on SO like replace smtp by sendmail, create a config/email.yml i don't have one) and many more ideas ...
0
votes
2answers
27 views
stack level too deep ActionMailer
A true stack overflow... this is my first go at emailing from an app.
From the form:
<%= form_tag request_path do %>
<%= text_field_tag :email, nil, placeholder: 'Find...', class: ...
1
vote
0answers
79 views
Rails 3, ActionMailer with AWS SES and attachments in Sparrow and Apple Mail
I am experiencing problems with ActionMailer, AWS SES and attachments (not inline) in Rails 3.2.13. When viewing the email in Gmail, it's displayed without any problems. When viewing it in Apple Mail ...
0
votes
2answers
44 views
rails 3 upgrade - You're using the old API in a mailer class
I'm trying to upgrade an application from rails 2.3 to 3.0.6
which has the following code in rails 2.3
class MessageSender < ActionMailer::Base
def ...
0
votes
0answers
17 views
ActionMailer how to switch another SMTP server if Timeout
Env: Rails 3.2 using ActionMailer
I am using action mailer to send error notifications, private messaging and application notifications to users and admin.
I have bought email from http://one.com ...
0
votes
0answers
11 views
Are there defaults for action_mailer.smtp_settings?
After fiddling around forever with the action_mailer.smtp_settings, trying to resolve an SMTP authentication error I encountered after having to move to a new SMTP server, I ended up commenting out ...
5
votes
2answers
42 views
Filter out email addresses from ActionMailer logs
When sending emails via Actionmailer in Rails, it logs something like:
Sent mail to example@example.com (72ms)
Rendered mailer/_header.html.erb (0.0ms)
...
I would like to filter the emails ...
0
votes
0answers
64 views
Timeout::Error execution expired mailer
In my controller's create action I have an email I'd like to be sent, here is the controller:
def create
@event = Event.new(params[:event])
Notify.new_event(@event).deliver
...
0
votes
1answer
30 views
Rails ActionMailer include CC field without sending CC email
Not sure this is a possibility.
My scenario involves a user submitting a ticket and two emails are sent.
One email is being sent the the Submitter (confirmation), another to the Admin (alert of ...
1
vote
1answer
38 views
Rails ContactUs model in single pages controller
Hi have simple rails site with no models, its used just for serving static pages.
The site has a Pages controller, but this is only serving up one home page made of partials.
Like such in the ...
0
votes
1answer
39 views
Rails delayed_job argument error with mailer
I'm getting a "wrong number of arguments (2 for 1)" error when I try send a mailer to delayed_job. Everything works perfect if I don't try to push it to the background. Below is my controller with ...
1
vote
2answers
81 views
Rails Mailer: change file when delivery_method :file
I want to have the file named Timestamp + normal_mail_name + ".eml"..
I looked into the rails source code, the mail-gem source code and the letter opener-gem.. Could you give me a hint how to ...
0
votes
1answer
46 views
How to trigger email? rails
I would like to trigger a mailer 'action' in a @post view.
class UserMailer < ActionMailer::Base
default from: "example@gmail.com"
def newsletter(post)
@greeting = ""
@users = ...
2
votes
1answer
54 views
Rails 3, Action Mailer, attachments, form_for, email
How could I attach a file to mail using form_for? So far it gives me an error:
ActiveRecord::StatementInvalid in UsersController#create
NoMethodError: undefined method `name' for nil:NilClass: ...
0
votes
0answers
18 views
Verification of approach for notification email sending
Every now and again I find myself building a feature and completely doubting whether my approach makes sense or is entirely out of whack. I was hoping somebody might be able to verify my strategy ...
0
votes
0answers
21 views
Rails: Mail view generated by controller? Or refactor?
So I develop an analytics tool. There are several reports that can be viewed as HTML in browser and downloaded as CSV/Excel. The content is compiled in the controller and it's somewhat complex.
Now ...
0
votes
0answers
48 views
Rails 3 ActionMailer corrupts attachments
I'm using Rails 3.2.13 and have been following along with the ActionMailer guide (http://guides.rubyonrails.org/action_mailer_basics.html#sending-emails-with-attachments), but I'm having difficulty ...
1
vote
1answer
94 views
Rails Mailer “Net::OpenTimeout: execution expired” Exception on production server only
I am using Ruby MRI 2.0.0 and Rails 3.2.12 on a Ubuntu 12.04 TLS VPS and attempting to setup email notifications in my app. It was working fine a few days ago, but not anymore. My web host is OVH.
My ...
0
votes
0answers
44 views
what does the ActionMailer deliver command return?
I'm trying to figure out how to gracefully inform a user that an e-mail has not been sent from Rails.
The issue is this line of code:
OrderNotifier.received(@order).deliver
and what happens when ...
1
vote
1answer
33 views
Line-wrapping at the SMTP
I am sending html email and the SMTP server handling emails messages with hard-wrapping at proper length.
I am using sendgrid and rails 3.2.11, need to do soft-wrapping in all lines of message below ...
0
votes
0answers
67 views
graceful error handling when actionmailer fails to connect to smtp server
I have RoR ActionMailer working fine from a production server, but am using a second (hosted) server for smtp sending of e-mails. Yesterday, the smtp server went down for a few hours, leading to ...
0
votes
2answers
36 views
Configuring Confirmation mail host in Rails Devise
I have setup an rails application using devise to implement a simple user sign up and sign in functionality.I have included confirmation mail to confirm the sign up.The confirmation mail works fine in ...
0
votes
0answers
59 views
Unexpected EOFError with ActionMailer
I am using Rails 3.2 with ActionMailer to send email notification.
I have bought email at GoDaddy.
I am also testing with a Gmail account.
In my development.rb I typically configure email this way ...
0
votes
1answer
25 views
URLs wrongly formatted when sending emails. Rails 3.2
I have managed to send emails (gmail) from my Rails 3.2 application with no apparent problems. However, the urls genrated in email have the :id param wrongly positioned.
NotificationMailer
default ...
1
vote
1answer
124 views
Sidekiq Delayed Mailer not sending emails
Good afternoon,
I'm trying to use Sidekiq/Redis to send emails in the background. I should note the following:
I am using devise-async and it works with no issues
My ActionMailer settings are good
...
0
votes
1answer
26 views
What is causing the ActionMailer error: undefined local variable or method `jp2CharContext'?
When attempting to do character detection on incoming emails, sometimes a NameError is thrown with this error message:
undefined local variable or method `jp2CharContext' for ...
1
vote
1answer
89 views
Rails 3: Sending Mail with Attachment - corrupted file after first send
I want to implement a real simpel newsletter.
Therefor I can select as much recipients I want.
To that newsletter I can attach a file. This works great for the first mail. All next mails have ...
0
votes
0answers
69 views
How do I set custom Rails 3 url helpers that work in ActionMailer?
I think what I'm trying to do is customize the URL helpers, but I might be going about this from the wrong end. If so, let me know so I can edit the question to make more sense.
I have a Rails 3.2.11 ...
0
votes
2answers
18 views
Reusing same view for several emails method with actiomailer
class AdminMailer < ActionMailer::Base
def send_message_to_user(user, subject, body, locale)
@body = body
mail(:to => user.email, :subject => subject)
end
def ...
0
votes
1answer
61 views
How to add references header to an email in actionmailer?
I have tried to add it using the headers as
headers "References" => "<message_id>"
But it is not found in the generated email. Moreover i have tried to add the In-Reply-To header and it ...
0
votes
2answers
27 views
undefined method `deliver_sent' for MailerFormError:Class
I'm upgrading rais 2.3.2 project to rails 3
Error:
undefined method `deliver_sent' for MailerFormError:Class
Application Trace | Framework Trace | Full Trace
...
0
votes
1answer
139 views
`method_missing': undefined method `add_delivery_method' for ActionMailer::Base:Class
Hi I am trying to initialize the ActionMailer::Base:Class with some data:
ActionMailer::Base.add_delivery_method :ses, AWS::SES::Base,
:access_key_id => '0PxxxxxxxxxxxxS8Dyyy',
...
0
votes
2answers
72 views
How do I get full URL to an image in a Rails asynchronous mailer?
I want to have emails I send out with ActionMailer contain images that link back to my app. In my development environment, for example:
<img src="http://myfullappurl.dev/assets/myimage.png">
...
0
votes
1answer
52 views
Trouble adding a file stored on S3 through Paperclip as an attachment in ActionMailer
I'm using Paperclip and S3 for file upload and storage in a Rails 3 app. The uploading of the files is working well, but when trying to attach an uploaded file to an email message with actionmailer, ...
0
votes
1answer
128 views
Preventing Devise/ActionMailer from sending confirmation email
I am using Devise with ActionMailer. I would like to allow users to create an account without email if they use Twitter. But I still need devise:confirmable if they choose to add email later on.
...
0
votes
1answer
32 views
Design Decision using ActionMailer
I'm confused about what design decision I need to make.
I know the fundamental use case of ActionMailer in that you would:
Create a class inheriting from ActionMaier
define a method in there of ...
0
votes
1answer
54 views
How Can I Speed Up The Sending Of Emails Using ActionMailer from my Mac Mini Server?
I am currently using a Mac Mini Server running OS X Server. The server hosts several Ruby on Rails applications using Phusion Passenger where two of them uses a PostgreSQL database. One of these ...
0
votes
0answers
191 views
Rails + Heroku + Sidekiq = PG::Error: SSL SYSCALL error: EOF detected
I have a rails app that uses Sidekiq's DelayMailer to send mails asynchronously. That app is deployed on heroku where we use PG for our DB. The EOF error (PG::Error: SSL SYSCALL error: EOF detected) ...
1
vote
0answers
42 views
Rails Action Mailer - Strip footer information
Users can receive an email that is sent to a list of people. They are given a warning that they can unsubscribe from this listing at any time. The user can Reply All which will be sent back to the ...
0
votes
1answer
48 views
Message.body empty in ActionMailer Observer
I am using an Observer to log outgoing emails; it fires correctly but when I attempt to extract the body of the email I get an empty string. The emails are definitely not blank and the logging record ...





