Tagged Questions
1
vote
1answer
22 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
1answer
17 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
17 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
0answers
12 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.
...
1
vote
1answer
58 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 ...
0
votes
1answer
12 views
How to (with a mailer-observer) delete a temporary (generated attachement) file after the e-mail has been sent?
I'm basically sending e-mails to user with an attachment (report) file automatically generated with the help of an ActionMailer.
This is my app/mailer/report_mailer.rb :
class ReportMailer < ...
0
votes
1answer
10 views
Is it possible to have a mail Observer that handle only a specific Mailer?
Is it possible to have a mail Observer that handle only a specific Mailer ?
So that we can possibly have different mailer - mail-observer pair that work together to handle task after their mail has ...
0
votes
2answers
17 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
0answers
53 views
Rail Actionmailer configuration with blue host
i'm using rails 3.2.11 and use blue host as my email server for sent emails.
below is my configuration info in development.rb
config.action_mailer.smtp_settings = {
:address ...
0
votes
0answers
23 views
Post Process emails sent from ActionMailer
I want to add a parameter to the end of every link sent from any email.
I'm using ActionMailer to send everything via SMTP and was wondering if there was a way to add a global post-processor on the ...
0
votes
1answer
54 views
How to fix SMTP-AuthentificationError
I built a small contact-form to deliver a message with Rails. I followed the Rails-Guides on ActionMailer closely (http://guides.rubyonrails.org/action_mailer_basics.html) - especially Point 5.2 ...
0
votes
1answer
87 views
ActionMailer rendering view not sending mail
I am having a weird issue with ActionMailer. It is sending some mails but not others. We recently upgraded to 3.2.12 and that is when the trouble started.
Here is my config:
# Disable delivery ...
0
votes
1answer
189 views
Rails 3.2, Godaddy domain & email, Heroku hosting - 535 Authentication Failed
Have added these settings in a Rails initializer file
ActionMailer::Base.delivery_method = :smtp
ActionMailer::Base.perform_deliveries = true
ActionMailer::Base.smtp_settings = {
:address ...
1
vote
0answers
146 views
ActionMailer Settings for Gmail with Rails 3.2 running on Amazon EC2 Instance
Background
Trying to resolve an issue with Gmail setup for ActionMailer in Rails 3.2.x running on a Ubuntu instance at Amazon EC2. The application is running with Nginx + Passenger.
The setup is as ...
1
vote
0answers
76 views
Email body missing in Gmail when I add inline attachments
My UserMailer has an export method which sends an email to an address. This email has a CSV attachment and some inline PNG attachments. Here's the action which sends the email:
# user - the user to ...
0
votes
0answers
36 views
Changes to ActionMailer 3.2.2 class not accepted
I have created a Mailer class in a Rails 3.2.2 app. Initially I entered a hard coded value for :to and a different :subject than the one below. Unfortunately, the mailer is still sending out mail with ...
0
votes
0answers
85 views
How to stop Blacklisting mass emails (non-spam)
I am designing a software for an industry that sends mass emails. It is very common for these companies to receive 1,000 to 2,000 emails a day (no, I'm not exaggerating) and to send out just as many ...
3
votes
1answer
40 views
how to specify headers[To] in a mail?
I am sending a email
mail from: from_email, to: members_email_id, subject: mail_subject, :reply_to => to_email
the mail is going, but i want to customize "To", instead of users email I want to ...
0
votes
1answer
69 views
Mac Mail won't display message sent from Rails with inline attachments
Gmail display the mail message just fine. But Mac Mail won't render the email content. It will only display the inline attachment.
I'm using Rails 3.2.11 now.
Any one have successfully create email ...
2
votes
1answer
99 views
Rails - How to test that ActionMailer sent a specific attachment?
In my ActionMailer::TestCase test, I'm expecting:
@expected.to = BuyadsproMailer.group_to(campaign.agency.users)
@expected.subject = "You submitted #{offer_log.total} worth of offers for ...
1
vote
1answer
59 views
How to disable a layout for a specific mailer?
I need to be able to disable a certain layout for a specific email. I've taken a look at Rails for ActionMailer - How to disable a Layout for a certain mailer however I don't know where to and how to ...
2
votes
1answer
148 views
ActionMailer observers not working with delayed_job
I have an ActionMailer observer that's working just fine during normal sends, but when I send the delivery to delayed_job, it doesn't get called at all. Is this a function of delayed_job itself, or ...
1
vote
2answers
92 views
Actionmailer for Appove Account - Email Not Send
I'm trying to create an email which is sent when admin click to active account for user
user has_one :account and account belongs_to :user
in user.rb
devise :database_authenticatable, ...
0
votes
1answer
97 views
Rails Actionmailer to email specific group of users based on User attribute being included in array
I have a Document model with a string column access and a User model with a string column team. In a Document I can enter an array of items for access such as "staff, sales, manager". Meanwhile, a ...
0
votes
0answers
27 views
derived action mailer class deferring to sibling class returning blank Mail::Message
Having an issue with derived ActionMailer classes deferring certain methods to siblings. Suffice it to say that the situation is as such.
class Parent; end
class Child < Parent; end
class ...
1
vote
1answer
75 views
Unable to send email when view has links
I am using ruby 1.9.3p194 and Rails 3.2.3.
I am facing problem while sending emails whose template has a link in it. I have written following code:
invitation_mailer.rb
def event_invitation(user, ...
1
vote
2answers
93 views
rails 3 load different partials in mailer action
So I have one layout for 2 mail actions: signup_email and change_password
def signup_email(user, url)
@user = user
@url = url
mail(to:user.username, subject:"Welcome to Clubicity!", ...
1
vote
2answers
87 views
Send email to address alternate from “To:”
I am implementing a sort of dynamic mailing-list system in Rails. I am looking to basically send an email and have the recipient receive it in this form:
From: person@whosentthis.com
To: ...
0
votes
1answer
252 views
Ruby On Rails - Contact form not sending email via localhost
similar problem
Rails contact form not working
guides: https://github.com/thomasklemm/email_form_rails
rails 3.2.x
app\models\message.rb
class Message
include ActiveAttr::Model
include ...
0
votes
1answer
57 views
configure rails for observing User registration
Here is my action do_registration in UserController
def do_registration
@user = User.new(params[:user])
respond_to do |format|
if @user.save
...
0
votes
0answers
396 views
Configuring GoDaddy Emails in Production Rails Application
I am a newbie when it comes to software development using Ruby on Rails. I am currently developing a Rails 3.2.6 application where I plan to send confirmation emails when actions are taken by a user ...
3
votes
2answers
411 views
NoMethodError undefined method mail for
After setting up mailer (3.2.6) in Ruby on rails (3.2.6) I get this error:
NoMethodError (undefined method `mail' for #):
my user_mailer.rb looks like this:
class UserMailer < ActionMailer::Base
...
1
vote
1answer
261 views
Using ActionMailer Method in link_to Statement - Rails 3.2.3
I would like to provide a link when clicked it will send an email to an admin to inform them to delete a record. I have searched for several hours, included here but could not find any examples.
...
0
votes
2answers
203 views
Send email to multiple users within an account when criteria is met in Rails App
I have a rails application what I want to send my users notifications when certain criteria are met. I can do this through a rake task. Currently I'm able to select the records that meet the ...
4
votes
1answer
3k views
Keep getting A sender (Return-Path, Sender or From) required to send a message
class SupportMailer < ActionMailer::Base
default :from => "email1@gmail.com"
def welcome_email(ticket)
case ticket.game
when "gameone"
@ticket = ticket
...
0
votes
0answers
49 views
Adding a uuid to an reply-to address in actionmailer
I have a token that I am creating for a "ticket" in my app, I'd like to send this token in the from address or the reply to address.
I'm trying this
from = "oursupport+"+ticket.token+"@gmail.com"
...