The tag has no wiki summary.

learn more… | top users | synonyms (1)

0
votes
0answers
3 views

Ruby Rails 3.2 mailer in production throw error no such file to load sass

I'm using JRuby 1.7.3 Rails 3.2.13 hosted on GlassFish 3.1. I'm using premailer-rails to inline the css to send email. Work ok in development. But production gives error: "LoadError (no such file to ...
0
votes
0answers
15 views

Cheetahmail in rails

I am trying to integrate the Cheetah Mail API in rails. I can't seem to find any examples or gemfiles that will work in rails 3.0. Should I be trying instead to use something like HTTParty?
0
votes
0answers
12 views

Rails 3 Net::SMTPAuthenticationError (500 Unrecognized command )

while sending email from the live server, if i configure the smtp settings with gmail account it sends mail successfully, config.action_mailer.default_url_options = { :host => 'myhostip' } ...
0
votes
0answers
16 views

Sending mails with actionmailer (Ruby on Rails) - without SMTP?

As the title says, is it possible to send mails without using SMTP? I've got it working by setting up SMTP, but then I need an account that I can send from and I want to be able to send mails from the ...
0
votes
1answer
18 views

Delayed Job and ActionMailer not working: “wrong number of arguments (2 for 0..1)”

I can't get DJ and ActionMailer to work for me. I always get this error: rake aborted! wrong number of arguments (2 for 0..1) ...
0
votes
0answers
13 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
10 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
12 views

Remove Content-ID from multipart emails

I'm using action mailer to send emails with both html and plain text version. Something like this: mail(:to => 'example@example.com', :subject => 'Test message', :from => ...
0
votes
0answers
20 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
36 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
14 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
29 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
46 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
123 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
1answer
19 views

Inherited Resources: How to send an email after a create or update action

I'd like to know what the best way is to send off an email when a record is created or updated specifically in the inherited_resources framework. Right now I'm doing this: def create create! ...
0
votes
1answer
11 views

ActionMailer::Base Dynamic :from email address

How can I change this code in my email mailer so that when current_user sends out an email from the application it is received by the recipient :from => current_user.email. Currently it is from ...
0
votes
1answer
20 views

Rails 3.2 ActionMailer - How to get full URL path in email

application.rb: config.action_mailer.default_url_options = { :host => "server.domain.gov" } PUBLIC_URL = "http://server/myapp" config.action_controller.relative_url_root = '/myapp' mailer: ...
0
votes
2answers
28 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
91 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
0answers
15 views

rails recipient or to email address in mailer layout

I m using sendgrid gem to sent bulk emails to users. Added unsubscribe link in mailer layout, for that I want get email address recipient how to get recipient email or to email in mailer layout. ...
0
votes
2answers
45 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
18 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
12 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 ...
0
votes
0answers
10 views

Invoking create method in Devise::ConfirmationsController

I am using Devise and would like to invoke ConfirmationsController#create as follow: %i Add another email = simple_form_for(@user, :url => confirmation_path(@user), :html => { :method => ...
0
votes
0answers
20 views

premailer rails not generating text part automatically

I want to use premailer-rails to generate text part of email automatically. gem 'hpricot' gem "premailer-rails" I'm not getting the text part when I look at the actual email. It seems as if the ...
1
vote
1answer
60 views

UserMailer with Devise

am using my custom mailer UserMailer to send emails. It works perfect in development, but in production i get error 500, that is when am trying to retrieve my password on forgetting. here is what is ...
5
votes
2answers
44 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
68 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
40 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
82 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
48 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 = ...
0
votes
0answers
48 views

ActionMailer mail with inline attachments not working

I am using rails 3.2.8. This is how mailer class looks like: class Newsletter < ActionMailer::Base default :charset => "UTF-8", :from => "\"Example\" <info@example.com>" ...
2
votes
1answer
56 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
99 views

ASP.Net MVC ActionMailer and custom view engine

I am using a custom view engine in my ASP.Net MVC project to help me deal with multiple sites (mutli-tenancy application) sharing the same code base. I have a base controller from which all my other ...
0
votes
0answers
19 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
1answer
59 views

How to configure action mailer (should I register domain)?

I am creating a simple non-profit application with Ruby on Rails. I have to set up the following settings in order to be able to send emails with Gmail: Depot::Application.configure do ...
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 ...
1
vote
1answer
65 views

Sending an Email asynchronously via ActionMailer

I'm trying to get an email to send asynchronously via ActionMailer for MVC3/MVC4 for C# ASP.NET. However I have come across 2 problems: If I attempt to use a Task.Run or Task.Start method using a ...
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
97 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
12 views

Rails Mailer Output Cutoff on iPhone

I have a rails app that sends an email to an email address and an SMS email address. On the iPhone, the message seems to cut off. Is this a limit of the iPhone? Or is there a certain way to format ...
0
votes
0answers
45 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 ...
2
votes
1answer
85 views

Rails sending faxes with efax

I'm building a Rails app where I need to send a record to a recipient's fax number. I'd like to use Efax to accomplish this. Most of the recipient's do not have an efax email address otherwise I'd ...
1
vote
1answer
38 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
68 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 ...

1 2 3 4 5 20