Questions tagged [sendgrid-api-v2]

30 questions
0
votes
1 answer

Separate attachment from Raw mime message from Sendgrid in Nodejs

I have a response coming from sendgrid inbound webhook, and it have some attachment, but is there any way we can separate the attachment from the full email payload. This is the email body we receive from sendgrid below: I have shortened the email…
0
votes
1 answer

Is there any filter option for X-MessageID from SendGrid response?

I have SendGrid response and here I get individual X-MessageID which is unique for all sent email, this X-MessageID is actually a starting position of Sendgrid MessageID. So here I was doing something like this "Sendgrid_MessageID Start with…
D M
  • 39
  • 6
0
votes
1 answer

How to use LIKE operator for msg_id or from_email or to_email in query for sendgrid email activity?

var queryParams = "msg_id LIKE'pBRuJA0OSqyRAHaT2sW8hg'"; var client = new RestClient("https://api.sendgrid.com/v3/messages?query=" + queryParams + "&limit=1"); var request = new RestRequest(Method.GET); client.Timeout =…
0
votes
1 answer

How to use sendGridAPI's last_event_time filter in queryParams json string with dynamic values in c#?

I have an error while using 'query':'last_event_time=2022-02-14T08:52:44Z' it gives me unexpected identifier 'query' error, here is my code var response = await client.SendEmailAsync(myMessage); var data = response.Headers.ToString(); var…
0
votes
1 answer

Getting SendGrid API Keys to work with ColdFusion

I'm having issues getting my ColdFusion application to integrate with Sendgrid's v2 API using API Keys. My solution has worked for years using username/password, but with the switch over to API Keys, something is amiss that I cannot figure out. I've…
hairbo
  • 3,113
  • 2
  • 27
  • 34
0
votes
1 answer

How Can I connect the SendGrid dynamic templates to azure custom policy to send custom verification e-mail?

I searched so many times about this this problem, but I couldn't find anything. Please help me if you know. I have a B2C on azure portal. In here, there is a policy. If I use this policy to verify the e-mail, it works without problem. But I want to…
0
votes
0 answers

How send attachment file by sendgrid using wix

I wanna send email using wix.com by https://sendgrid.com and all work great, but the attached files come empty. Why? I get file and send by send grid
send