Tagged Questions
2
votes
1answer
57 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
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
80 views
Sending two different email with one common attachment, get merged together?
I'm sending out two different e-mails:
mail(:to => email1, :template_name => "mail1_template",
:subject => "Mail 1").deliver!
mail(:to => email2, :template_name => ...
0
votes
1answer
73 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 ...
0
votes
1answer
60 views
Rails 3.0.17 sending inline attachments instead of regular ones
So, we have just upgraded our project to Rails 3.0.17 (please don't ask why this particular version, just happened so) on top of Ruby 1.8.7 enterprise edition.
I have methods to generate CSV data and ...
0
votes
0answers
64 views
PDF attachment broken on rails 3.1.6 production environment
I store a pdf document in the database and send it by email with this lines of code:+
def invoice(payment)
@payment = payment
@user = payment.subscriber or raise(ActiveRecord::RecordNotFound)
...
3
votes
2answers
576 views
Sending email with attachments
I've got a mailer that as follows:
class Payments::LateNoticesMailer < AsyncMailer
def notice(payment_id)
@payment = PaymentDecorator.find(payment_id)
@invoice = @payment.invoice
...
0
votes
1answer
196 views
Rails 3 ActionMailer sending 0 bytes pdf attachments
I have managed to send an email with pdf attachments that are stored on s3
def welcome_pack1(website_registration)
require 'open-uri'
@website_registration = website_registration
...
0
votes
1answer
486 views
Can't get Rails 3 ActionMailer to accept an attachment
I am migrating an Rails 2.3.14 application to Rails 3.0. In it, a mailer sends a message with an attachment. Using the code below, this worked without issue in 2.3.x.
def notification(material, ...
0
votes
1answer
276 views
Rails - Generating email attachments that work in Apple Mail
I have a Rails app that sends a PDF to the user. I am producing this email with the following mailer code:
def new_file_notification
mail(:to => 'test@test.com', :subject => "File for ...
0
votes
1answer
592 views
Sending large email attachments with actionmailer and heroku from s3
i have an app that stores uploaded files in s3, once complete a mail is sent with the attached file. The app works fine when attachments are between 0-15 Mb in size. However when i attached something ...
1
vote
1answer
1k views
Rails: Email a pdf generated with prawn to an email sent by ActionMailer?
I have an ecommerce app. I'm using Prawn to generate pdf invoices of orders. I'm using a standard Prawn setup. In views/admin/orders, I have a file called show.pdf.prawn. When the seller is ...
1
vote
3answers
565 views
How Do I Prevent Email Attachments from Rendering Inline using ActionMailer
I am using the following code to send an email with a pdf attachment:
class StudyMailer < ActionMailer::Base
def notify_office(study, sent_at = Time.now)
subject "Email Subject Goes Here"
...
0
votes
1answer
452 views
how to attach files that are stored in the database to the action mailer?
you have mention about how to store files in database.
How to attach those files with mail using action mailer?
I have search many sites but not able to find the way to attach database files.
...