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

SendGrid Send Email Rate Limit

SendGrid documentation explicitly mentions rate limits on all resources here. The send api (https://api.sendgrid.com/v3/mail/send) doesn't seem to include any X-RateLimit headers in its response. Does this mean that the send api is not rate limited?
Anshuul Kai
  • 3,876
  • 2
  • 27
  • 48
9
votes
2 answers

How to get the full SendGrid API Key?

I am able to obtain an API key from the web app. However, according to SendGrid documentation, I am only allowed to access a small subset of the whole key. If you see the API key sample…
AlvinfromDiaspar
  • 6,611
  • 13
  • 75
  • 140
9
votes
3 answers

Can I have an image with a substitution tag in a SendGrid template?

I am creating a template in SendGrid and I was trying to put an image in the center, and the URL I would like to be a tag so I can substitute dynamically in my code, because it will come from my database. I tried to simply place a tag in the input…
denyzprahy
  • 820
  • 11
  • 24
9
votes
1 answer

How do I use SendGrid's Inbound Parse Webhook example in Postman?

I am trying to figure out why incoming emails have paragraphs stripped in my Ruby on Rails app with Griddler and SendGrid. To do that I'd like to mock an inbound email using Postman. SendGrid have an example 'Default Payload' which looks like…
Benjamin Humphrey
  • 3,770
  • 2
  • 23
  • 41
9
votes
2 answers

Sendgrid: Send distinct mails to different recipients in one request

Tried using personalization with substitution like %body%. However, I get an error saying Substitutions are limited to 10000 bytes per personalization. Basically the whole body would differ recipient to recipient. Is there another efficient way to…
Shyamal Parikh
  • 2,988
  • 4
  • 37
  • 78
9
votes
0 answers

Sending email using SendGrid take long time

I using SendGrid in asp.net mvc. I use this code to send email : var myMessage = new SendGridMessage(); myMessage.From = new MailAddress("john@example.com"); myMessage.AddTo("testing@something.com"); myMessage.Subject = "Subject"; myMessage.Text =…
Ahmed Shamel
  • 1,982
  • 3
  • 24
  • 58
9
votes
3 answers

Ruby on Rails: bad username / password? (535 Auth failed)

I just finished my ruby foundations coursework at Bloc and I'm starting to bury my head into rails development. Things were going smooth until I hit this snag with devise and confirmation emails. I tried googling and looking around at some other…
Jeff Wilkey
  • 371
  • 1
  • 5
  • 16
9
votes
1 answer

SendGrid vs ActionMailer vs mail server

I am building a Rails application with the following functionality: when receiving emails from users, parse the content, perform some tasks and send update emails to users, with low latency. For receiving emails, I have MailMan gem. For sending…
AdamNYC
  • 19,887
  • 29
  • 98
  • 154
9
votes
1 answer

Sending emails with SendGrid - Local ok , Remote no ok

Sending emails with SendGrid Works just fine on my local (code below) No source control, just a straight WebDeploy of the same code to AzureWebsites yeilds the error below. SendGrid support have no clue. Exception Details:…
user1748217
  • 143
  • 8
8
votes
0 answers

SendGrid 2FA activation/set up link not working

I try to get Sendgrid working with 2nd lowest plan (Essentials 40K - Monthly). However, always when I click link "Open SaaS Account on publisher’s site" in Azure Portal I got site telling following: Let's secure your account with Two-Factor…
8
votes
2 answers

SendGrid client TypeScript Error: HttpMethod

I have: import sendgridClient from '@sendgrid/client' sendgridClient.setApiKey(process.env.SENDGRID_API_KEY); const sendgridRequest = { method: 'PUT', url: '/v3/marketing/contacts', body: { list_ids: [myId], …
Shamoon
  • 41,293
  • 91
  • 306
  • 570
8
votes
5 answers

Failed to authenticate on SMTP server with username "apikey"

i am getting this error when i try to send mails via sendgrid in laravel 6: Failed to authenticate on SMTP server with username "apikey" using 2 possible authenticators. Authenticator LOGIN returned Expected response code 250 my…
shape
  • 95
  • 2
  • 6
8
votes
1 answer

Gmail is clipping html email for no reason

We use node.js to format html email sent by SendGrid to users to confirm account creation or other things like that. The email is sent correctly. All the content is displayed correctly. But, in Gmail, even if all the content is displayed correctly,…
user10188111
8
votes
2 answers

SendGrid Transactional Templates - Address and Unsubscribe Link Broken

I've configured several Transactional Templates to be sent from my SendGrid account via their handy Design Tool, which work great!. However the Address Line and Unsubscribe links on the template footer aren't activated. In an email they display as…
Clay Banks
  • 4,483
  • 15
  • 71
  • 143
8
votes
1 answer

How to authenticate Inbound Mail? With SendGrid specifically?

I created an application which uses SendGrid's Inbound Parse Webhook. Whenever someone emails "whatever@mydomain.com", the email goes to SendGrid, and then SendGrid hits our server with a POST containing the email's contents. We can then feed that…
kdeez
  • 681
  • 1
  • 8
  • 17