Tagged Questions
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 ...
3
votes
2answers
563 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
...
7
votes
1answer
1k views
ActionMailer sending real emails in test mode! - How to turn off?
Newly signed up users to my little app must be approved by the admin (me) before they can gain access to the site. I've succeeded in generating such emails in development with an after_create ...
0
votes
1answer
238 views
Sendgrid Multipart emails Blank from Heroku
I was using only html emails which worked from my Rails 3.1.4 app, but I decided to add text only emails to make them multipart and now the email arrives blank. I also started using Sendgrid's Heroku ...
2
votes
2answers
792 views
removing 'via sendgrid.me' from mail sent using on heroku
I'm using the free sendgrid plan to send email from my rails app hosted on heroku. I set it up using a combination of these instructions and this tutorial
It's all working, but on gmail the it the ...
10
votes
2answers
5k views
Sendgrid / email sending issues in Ruby on Rails (hosted on Heroku)
im having a problem getting sendgrid to send emails successfully on a rails 3.1 app that's using authlogic for authentication and is being deployed on heroku. i have the following action mailer ...
5
votes
1answer
787 views
Is there a way to debug mailer with sendgrid on heroku? Or to check if the mail get actually sent?
I'm trying to implement a "contact us" form on my rails 3.0.10 project. Following the RailsGuides I created a mailer.
class QuestionMailer < ActionMailer::Base
default :to => ...
0
votes
1answer
588 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 ...
0
votes
2answers
925 views
Rails 3 sendgrid support failing to send emails… tried everything I found on the web… : P
So I've got a sendgrid account, and I'm trying to get Rails 3 to send emails through it... Here are some of my settings:
#development.rb
config.action_mailer.default_url_options = { :host => ...
1
vote
1answer
2k views
Devise email confirmation not working on Heroku
When I click on the link in my confirmation email that devise sends, it seems to go to a path that is not recognized by my application.
The url looks something like this:
...
7
votes
3answers
477 views
Most reliable way to deliver emails from a users email address in rails?
I would like to allow users to send emails which are generated in my rails app from their email address .
I know I can just use my servers sendmail, and set the from address to their email address, ...
3
votes
1answer
1k views
Rails 2.3.9 and SendGrid, Connection refused - connect(2) on localhost
I've looked through Google and StackOverflow and can't figure this out.
I've got a Rails 2.3.9 app using Ruby 1.8.7, trying to send email through SMTP like so:
ActionMailer::Base.delivery_method = ...
1
vote
1answer
2k views
SendGrid not sending emails on Heroku from default inqury/contact form
This is my first app using RefineryCMS. The way I have sent mail from applications in the past is not currently work with my refinery app.
I have tried numerous ways of doing this by way of numerous ...
0
votes
2answers
227 views
Rails - Suggestions on how to store a random set of params in the DB
Ok Rails gurus, I need some smart advice here.
I'm trying to use SendGrid's parse api: http://sendgrid.com/documentation/ApiParse
The big challenge here is that SendGrid does the following in the ...