Tagged Questions
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
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
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
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
137 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
...
1
vote
1answer
25 views
Rails send individual email to each user?
I'm sending around 100 emails at a time using the following mailer in my Rails 3 application:
def new_resource_notification(resource, user)
@resource = resource
@user = user
mails = ...
0
votes
1answer
227 views
How do I setup different ActionMailer Base smtp settings for development and production?
I have ActionMailer working correctly in both production and development. I use different smtp settings for each environment, gmail for development and a SendGrid account through Heroku for ...
0
votes
1answer
89 views
How to modify actionmailer email html_part before sending
I have everything at the point where I'm about to send out the email but I need to modify all links to include Google Analytics attributes. The problem is that if I try and read/write the ...
0
votes
1answer
126 views
Rails 3 send multipart email with premailer and have the option for using a template or not
I have the option to create an email wherein the contents can either be part of an HTML document or be an entire HTML document. If it's only a part, the Mailer should use a template for rendering. If ...
0
votes
1answer
64 views
extract just the replied email body from recieved email from rails app
My Rails application allows users to reply to certain emails in order to post a comment to the app. When email is replied to, the entire body including the original email gets included. Some clients ...
0
votes
0answers
64 views
How to forward raw body email with ActionMailer / Rails?
Good afternoon,
I am getting inbound email post to a URL on my Rails app via Mandrill. I'd like to just simply forward the email along to my gmail to handle it (and do some additional processing in ...
0
votes
2answers
87 views
testing email gets sent in cucumber
I have a list of stories assigned to me in Cucumber, one of them being "Then the user should receive a confirmation email". I think testing that the user receives it is beyond the power of the ...
1
vote
2answers
50 views
Rails Send 2 different emails from one mailer function
I have a need to do so, because it seems logical to me:
def notification(vehicle)
@vehicle = vehicle
mail(:to => @vehicle.owner.email_address, :template_name => "n_o")
mail(:to => ...
1
vote
0answers
81 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
87 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 ...
4
votes
1answer
52 views
How to show to whom email was originally destined in rails?
I have a system which receives and send mails to the various members in a group.
Lets say I have a group support@xyz.com which have members
member_1@xyz.com
member_2@xyz.com
and so on..
Same way ...
0
votes
1answer
43 views
Send an email with different senders
I have an application that enables the seller send an email to his client.
How can I set the sender of the email as the email of the seller?
Example:
E-mail A: { from: "steve@domain.com", to: ...
0
votes
1answer
113 views
Ruby modifying body of a Mail Interceptor using register_interceptor and delivering_email
I've got a working intercept up and running in my Ruby on Rails application. Currently I can modify the subject just fine using the technique below, but for some reason I can not modify the Body.
...
3
votes
1answer
108 views
Actionmailer BCC not working
Does BCC not work in Rails 3? My TO and cc work great but BCC just will not work. I saw other people were having similar problems so I was wondering if anyone solved it. I am using
actionmailer ...
0
votes
1answer
27 views
Rails 3 mailer issue
I'm following this railscast to become familiar with ActionMailer in rails 3, but am having no luck with getting the email to deliver.
I'm thinking my issue may be with my setup_mail.rb file, can ...
0
votes
2answers
233 views
How to use Rails mailer settings when creating a custom Mail?
I'm creating a Mail object in a Rails app and want it to pick the mailer settings:
original = UserMailer.new_registration
original.deliver# Does the job
custom = Mail.new(original.to_s)
...
2
votes
1answer
50 views
How to serialize and deserialise mailers?
How can I serialise the mailer so that it can be stored for further use?
The serialised data should be disconnected and self sufficient to be delivered on separate machine that should deliver that ...
0
votes
1answer
132 views
How to see the multipart/alternative email in Rails?
When sending a multipart/alternative email, the body is empty:
m = send_mail
=> <Mail::Message:70121014358060, Multipart: true, Headers: <Date: Tue, 06 Nov 2012 09:18:06
-0800>, <From: ...
0
votes
1answer
78 views
How do you get the full image url for emails with asset pipeline and Heroku?
I am trying to render out HTML for emails that include images with full urls. I am using Rails 3.2 (asset pipeline) and Heroku. I don't know where my problem is.
I added this method to my application ...
2
votes
1answer
155 views
ActionMailer debugging
I'm trying to use Action Mailer in Rails to send email to users.
def create
...
if @post.save
UserMailer.archive_confirmation(@site).deliver
end
end
But when I try it, I don't get any ...
1
vote
0answers
125 views
Rails / ActionMailer alternatives to SMTP
A client's IT department is telling me that SMTP isn't secure enough for sending mail through their Exchange server from a Rails app I built (hosted on Heroku). This seems like crazy talk to me, but ...
1
vote
1answer
54 views
Toggling User Receive Email On / Off (Rails 3)
I'm writing a demo app that involves sending email to the users when another user follows them, this is all set up and working now. My problem is that I cannot work out how to add an option in the ...
0
votes
0answers
24 views
Notify of exceptions within a rails mailer
I use ExceptionNotifier to make sure that I get an email when there's an error in my rails app:
MyAPP::Application.config.middleware.use ExceptionNotifier
But if I make some error within a mailer, ...
1
vote
2answers
88 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
149 views
How would I add this header to Rails 3 ActionMailer?
I'm trying to get SendGrid setup for my app and one thing I want to do is let SendGrid categorize the email.
To do that, they say to add this header to outgoing email: X-SMTPAPI: {"category": ...
0
votes
1answer
124 views
How to mimic a mail being sent from a specified email from a contact us page ruby
I followed this tutorial to send emails from rails and it works just fine. But I want to improve this for my application. I don't really want to receive emails from myself all the time, if someone ...
3
votes
2answers
852 views
ActionMailer sending emails with empty body
It appears that around the time that I upgraded rails to 3.2.8, the body isn't being set when I create and send emails. No code around the mailers has changed in this time, with the exception of ...
0
votes
0answers
100 views
rails Add email address to cc without actual sending it to this address
I have small rails script that can receive emails of our internal employees emails and recent it to real address.
My work flow look likes this:
Admin sent email to Customer real address and ...
1
vote
1answer
105 views
Action Mailer breaks application when attempting to send email
Looking for help with the action mailer in rails. I'm using Rails 3.2 and devise for authentication. I followed the railscasts to get started on using the action mailer so I'm setting up the action ...
0
votes
0answers
57 views
Rails: Nested contact form in models show page
This is a follow up from this question - How to create a rails Contact Form Inside a model's show page?.
So I have model message and every-time I create a new message I get an e-mail via ...
1
vote
1answer
2k views
rails email error - 530-5.5.1 Authentication Required.
trying to send email form Ruby on Rails but getting this:
SocketError in UsersController#create
getaddrinfo: nodename nor servname provided, or not known
My environments/development.rb file has:
...
0
votes
0answers
114 views
Liquid template in Rails ActionMailer
Is it possible to use a liquid template to render the email body in ActionMailer? This seems to have been possible up to Rails 2.3.8 by overriding the render_message method. Is there something ...
0
votes
1answer
69 views
Suspend sending emails in ActionMailer
In my Rails application I want to temporarily stop sending email for specific users (e.g. when I get bounces due to quota) until the user confirms he is able to receive email again.
I have a common ...
1
vote
0answers
54 views
Rails Mailer print
Im using mailer to send out HTML rich emails to users that contain coupons. Each email may have up to around 10 coupons but I would like to add a print link to each one that allows them to print just ...
0
votes
0answers
53 views
Mailman like reply vs reply-to-all with Rails (ActionMailer)?
With mailman, you can configure the list so that replies go to just the message sender, while reply-to-all goes to the whole list. Trying to get this behaviour with Rails / ActionMailer.
If I ...
0
votes
1answer
168 views
Rails Mailer is not actually sending emails
I have just started learning ruby on rails and this was one of the tutorials i followed:
http://railscasts.com/episodes/206-action-mailer-in-rails-3
I followed it to a T and I have yet to receive ...
0
votes
0answers
67 views
How can I configure Google Groups (mailing-list) in Rails Action Mailer
I'm trying to set-up a Google Groups email as default email in my Rails app.
I first tried to configure this in the config.action_mailer.smtp_settings but, having no password, I cannot authenticate ...
2
votes
0answers
128 views
Timeout::Error when using ActionMailer on local server
I'm trying to setup e-mail actions in my Rails app and I want to test the mailing functions locally. I followed this Railscast but sending mail throws a Timeout::Error(execution expired) error ...
0
votes
2answers
206 views
Rails email scheduling
Im working on an app where users enter certain dates they want to reminded of (birthdays, anniversaries, holidays ect).. I need to setup an automated email that goes out 2 weeks, 1 week, and 1 day ...
0
votes
1answer
125 views
Rails ActionMailer, link_to forward?
How would I go about making a link_to "forward this email" in mailers generated by ActionMailer? I'm not sure how I would go about doing this.
The reason I'm asking is because Campaign Monitor seems ...
1
vote
1answer
262 views
Email Failure - Rails 3 Heroku Staging App
Good afternoon,
I have an app running on Heroku with an identical staging application. Everything should be exactly the same between the two, except that I've copied over the ...
0
votes
2answers
76 views
Actionmailer - how can I set up “from” part?
This is my config file in /config/initializers/setup_mail.rb:
ActionMailer::Base.smtp_settings = {
:address => "smtp.gmail.com",
:port => 587,
:domain ...
0
votes
1answer
159 views
Using templates for Pony gem
I recently came across sending emails via Rails. After watching railcast, it seems that you can write up a template when using Action Mailer. I really liked this feature for my purpose. I also came ...
0
votes
0answers
72 views
How can i get data from an different Model then ActionMailer [solved]
How can i give an parameter to an ActionMailer generated Mail from an other controller
This guide is cool: Our mailsystem is running http://guides.rubyonrails.org/action_mailer_basics.html
class ...
0
votes
2answers
103 views
Include controller methods in emails in a Rails 3 application?
I am trying to email a monthly report which is simple the current month's income compared to the last months.
I have all of that working in my report controller (which references another model called ...

