Questions tagged [sendgrid]

Cloud-based email infrastructure and delivery engine, with integration via SMTP and HTTP API. Also offers analytics and newsletter functionality.

SendGrid is a cloud-based email infrastructure and delivery engine, with integration via SMTP and HTTP API, also offering analytics and newsletter functionality.

Helpful links

3350 questions
13
votes
4 answers

How to Add Custom variables to SendGrid email via API C# and Template

I am trying to figure out how to add variables to existing template (example: Web Link Or Name dynamically) which has been created in sendgrid template engine, I am unsure how to do this using the SendGrid C# .NET libraries. I am wondering if anyone…
Jimbo Jones
  • 983
  • 4
  • 13
  • 48
13
votes
1 answer

Why doesn't SendGrid need DNS modifications

I was looking into SendGrid and came upon this interesting forum post saying you don't have to make DNS mods to ensure deliverability: http://community.sendgrid.com/sendgrid/topics/why_dont_i_need_an_spf_record_or_other_dns_mods Our Free accounts…
Vilém Procházka
  • 1,060
  • 2
  • 17
  • 28
13
votes
6 answers

Why CSS is not working when sending HTML email?

As I am using SendGrid service at heroku, I've noticed that when I send HTML based emails, the CSS has no effect, can any one tell me what could be wrong ? I tried to send it as html.haml, html.erb, but both didn't work, although the images are…
simo
  • 23,342
  • 38
  • 121
  • 218
12
votes
4 answers

Is there a way to use SendGrid Template Versioning with different development life-cycle environments?

Versioning in SendGrid allows API clients to make template requests only by template ID documented here, however, only one version of a template can be "Active" at a time. Obviously, the template used for our production applications needs to always…
CodeKiller
  • 375
  • 4
  • 12
12
votes
1 answer

Rails - SendGrid - invalid response error

I'm using SendGrid for my Rails App on Heroku. I tested the process of signing up. I saw the email get created and sent in SendGrid. The email showed up in my gmail inbox. But when I clicked the "Activate" link in the email I get the error…
user3064141
  • 407
  • 4
  • 17
12
votes
2 answers

Rails 3.2 Emails being delayed for 11 mins before processed by Sendgrid

I have a Rails 3.2 app running on Heroku using Action Mailer and Sendgrid to send single transactional emails. Currently when the app sends an email, the request doesn't get received by Sendgrid to send out for 11 minutes. When viewing the received…
Steve
  • 181
  • 1
  • 9
12
votes
4 answers

How to send embedded images with sendgrid emails?

I'm starting with SendGrid to send my e-mails, but I coudn't find how to embed images. Without using SendGrid I was using the following code to send e-mails with embedded images: var mail = new System.Net.Mail.MailMessage(); mail.Subject =…
Diogo Arenhart
  • 407
  • 3
  • 8
  • 15
12
votes
1 answer

Receiving emails via SendGrid

How do I use sendgrid to receive email and then be able to reply to that email from our domain? Like someone sends an email to contact@lessonshark.com and we reply via contact@lessonshark.com.
cdub
  • 24,555
  • 57
  • 174
  • 303
11
votes
1 answer

How does Sendgrid's automated security works?

SendGrid's automated security automate SPF and DKIM by a CNAME record. It even allows to have our own SPF and DKIM records in place directly using Domain Registrar. How do they do it without collusion with existing SPF and DKIM records in place of…
jeffbRTC
  • 1,941
  • 10
  • 29
11
votes
1 answer

SendGrid - How to remove unsubscribe link from some emails sent using Dynamic template

I have enabled Subscription Tracking in SendGrid and set the content as HTML body. So every email sent programmatically(in Node.js) using dynamic templateId will have the unsubscribe link. But we want one dynamic template not to attach the…
Sneh
  • 413
  • 1
  • 5
  • 18
11
votes
2 answers

SendGrid SMTP integration issue

I am trying to integrate SendGrid in ASP.NET MVC application using SmtpClient and MailMessage methods on Azure. Code: MailMessage message = new MailMessage(); message.IsBodyHtml = true; message.Subject =…
AaBa
  • 451
  • 1
  • 6
  • 21
11
votes
3 answers

Encode CSV file for Sendgrid's Email API

I am attempting to build a client reporting engine using R/Python, and Sendgrid's Email API. I can send emails, but the last thing that I need to do is attach a client's CSV report. I have attempted a number of approaches, including base64 encoding…
Btibert3
  • 38,798
  • 44
  • 129
  • 168
11
votes
1 answer

How do I get an Azure SendGrid api key?

I've followed the instructions for How to Send Email Using SendGrid with Azure to set up a SendGrid account on Azure. When I use NuGet to get the SendGrid package, it's a much newer version (8.0.5 vs 6.3.4) so the sample for actually sending email…
C-Pound Guru
  • 15,967
  • 6
  • 46
  • 67
11
votes
5 answers

How to email multiple recipients in sendgrid v3 node.js

Can someone help me send an email to multiple recipients in sendgrid v3 + node.js? I've noticed that when I enter several email addresses in the to field, only the first email address receives the email. The email addresses after the first one do…
Trung Tran
  • 13,141
  • 42
  • 113
  • 200
11
votes
5 answers

sendgrid multiple recipients c#

I'm using this code to send email from a web application. No problem with just one recipient. I've researched to use the same technic coming from https://sendgrid.com/docs/Integrate/Code_Examples/v3_Mail/csharp.html to send email to multiple…
mainavatar
  • 111
  • 1
  • 1
  • 3