sendgrid-rails icon indicating copy to clipboard operation
sendgrid-rails copied to clipboard

SendGrid extensions to Rails 3 ActionMailer::Base

Results 11 sendgrid-rails issues
Sort by recently updated
recently updated
newest added

Hi, I am using ruby 2.3.1 and rails 4.1.2. I am passing template_id('d-XXXXXX') before calling mail() of sendgrid but it says _**NoMethodError: undefined method `template_id’ for # Did you mean?...

I am using Sendgrid in my Rails application, when I add emails in TO and BCC/CC, then after sending the email through my application, TO email is working fine and...

The interceptor calls 'mail.to' to retrieve the email address. However, the mail gem will only return the address, and not the full formatted string. We can call `.addrs` (https://github.com/mikel/mail/blob/master/lib/mail/fields/common_address_field.rb#L47) but...

There was an error while trying to load the gem 'sendgrid-rails'. Gem Load Error is: undefined method `alias_method_chain' for ActionMailer::Base:Class Did you mean? alias_method

To fix #24 I've changed the default dummy_recipient to an example.com email address. For consistency, I've also changed all the email addresses in the specs and the docs to use...

I've added support for adding suppression groups to the `X-SMTPAPI` header. See https://sendgrid.com/docs/API_Reference/SMTP_API/suppressions.html for the documentation. And while I was at it I've fixed some spelling errors 😎

Hello, please do not use @email.com in your code or examples! People are deploying it like this and people who own this mail addresses are getting sensitive information. Just use:...

Unless I'm missing it, it would be very handy to be able to set some of these options at the controller level rather than for each method like the way...

https://sendgrid.com/docs/Classroom/Send/v3_Mail_Send/how_to_migrate_from_v2_to_v3_mail_send.html https://sendgrid.com/docs/API_Reference/Web_API_v3/Mail/index.html Thanks!

SMTP is a very chatty protocol (read: slow). It would be great to make use of [Web API](https://sendgrid.com/docs/API_Reference/Web_API/mail.html), just like [mailgun_rails](https://github.com/jorgemanrubia/mailgun_rails).