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
10
votes
9 answers

SendGrid Tutorial resulting in Bad Request

I apologize if this is a dupe question, but I have not found any solid information about this issue either on this site or on others. With that being said, I am working on an MVC 5 web application. I am following this tutorial over on ASP.net.…
Anders
  • 12,088
  • 34
  • 98
  • 146
10
votes
2 answers

SendGrid Cc and Bcc not working on PHP

I'm using sendgrid with php, I've used both options the client library and the curl option. So far, I've been able to send emails directly with the addTo option with no problem. But when I try to add Cc or Bcc options, the email still gets sent but…
Mike
  • 485
  • 1
  • 4
  • 14
10
votes
4 answers

Adding "web version link" in email by sendgrid

How do I add a link to a web version of my sendgrid emails like "having trouble reading this email, click here"? [EDIT] I use a php sendgrid library include "sendgrid-php-master/SendGrid_loader.php"; And I use this code and it doesn't work : $mail…
Abdelali AHBIB
  • 602
  • 1
  • 7
  • 18
9
votes
1 answer

Twilio SendGrid emails stuck in processing

I'm trying to integrate Twilio email verification in my application. Here's the code: public EmailVerificationDto sendVerificationEmail(String recipient) { Verification verification = Verification.creator( …
dev-rifaii
  • 217
  • 2
  • 9
9
votes
0 answers

How to grab dynamic date in SendGrid's Dynamic templates?

How do I get the current year for the Copyright © {{YEAR}} in a SendGrid Dynamic Templates WITHOUT test data? I'm looking for something like {{ formateDate new Date YYYY }} since we want the year to update automatically so we can't rely on test data…
Storm Parker
  • 583
  • 3
  • 7
  • 21
9
votes
2 answers

Is there a way to retrieve the generated HTML email body of a dynamic template via SendGrid API call?

We have a site where our agents enter in some data, and then that data is sent to a client, via a SendGrid dynamic template. The email content includes a lot of calculations based on the data entered, so we want our agents to have the ability to…
daybreaker
  • 1,320
  • 1
  • 10
  • 17
9
votes
2 answers

Warning while sending template email via sendgrid with '&'

I'm sending an email with help of the sendgrid api v3 but got the warning/error: Content with characters ', " or & may need to be escaped with three brackets {{{ content }}} in my api json i'm adding an link containing the &…
andre_hold
  • 562
  • 8
  • 20
9
votes
2 answers

SendGrid 403 Response for /v3/contactdb/recipients - Permissons needed

What permissions do I need or what am I doing wrong with this SendGrid API call? I'm trying to post a new recipient ( /contactdb/recipients ) to Send Grid but keep getting a 403 response: I get this even when calling the API from the SendGrid…
David Kassa
  • 764
  • 7
  • 14
9
votes
2 answers

Error Provisioning User - User status - suspended

I created a new Sendgrid addon in Heroku: heroku addons:create sendgrid:starter After that, I entered my Sendgrid account and it said that my account was suspended (I just created, how is it suspended?) So, I had a brilliant idea (NOT!): I've…
B-M
  • 1,248
  • 9
  • 19
9
votes
2 answers

Encoding for special characters not working in email subject for sendgrid templates

I have been using the sendgrid-ruby gem for sending emails. The subject of the email doesn't decode special characters properly. Eg. Sending this subject for the email How's it going translates to this in the actual email How's it going I have…
9
votes
2 answers

Sendgrid Inbound Parse Webhook Emails are not received on Sendgrid

I am using the SendGrid for receiving the emails from my domain (example.com). I have configured all the steps from the mentioned link Sendgrid Inbound Parse Webhook. I have added all the name records(MX records and CNAMES) in the GoDaddy DNS…
niks290192
  • 694
  • 1
  • 9
  • 23
9
votes
2 answers

In Sendgrid Design template, how to use handlebar iteration for table?

I'm using SendGrid online "Design" template, with a module "code". In their documentation (https://sendgrid.com/docs/ui/sending-email/editor/#code-modules), they say that de code editor does not modify or validate any HTML. If I write this piece of…
rekam
  • 1,061
  • 3
  • 13
  • 31
9
votes
5 answers

Sendgrid: use template versions to support multiple languages

I want to utilize Sendgrid template versions to support multiple language support. According to Sendgrid documentation: A template can only have one active version at a time. If you’ve created a new version with different HTML that you want your…
Hutsul
  • 1,535
  • 4
  • 31
  • 51
9
votes
4 answers

Send email with Sendgrid in Django

I'm trying to send emails from a Django app using Sendgrid. I've tried many configurations, but I still doesn't get any email on my Gmail account. You can see my configurations bellow: settings.py: SEND_GRID_API_KEY =…
prib
  • 91
  • 1
  • 3
9
votes
1 answer

MultipartFormDataStreamProvider for ASP.NET Core 2

I am in the process of migrating a project from ASP.NET MVC 5 to ASP.NET Core 2 and have run into some issues regarding the MultipartFormDataStreamProvider As far as I can tell it's not yet a part of .NET Core and therefore cannot be used. The issue…
Subtractive
  • 500
  • 2
  • 9
  • 19