About 50 results
Open links in new tab
  1. How do I request and download a CSV of email activity from the …

    In contrast, the CSV export supports up to 1,000,000 events and contains more information about the messages. How can I retrieve the generated CSV of email activity through the SendGrid …

  2. c# - How do I send a Sendgrid email using a template and add …

    Apr 19, 2022 · I can send a simple email, I can also send emails using a specific template w/ the TemplateId like the example below, but QUESTION - How do I send this template below and …

  3. Subject Not Set in Emails Using @sendgrid/mail with Express …

    Jul 30, 2024 · I'm using the @sendgrid/mail library in my Express backend to send emails when an order is purchased. However, the email subject does not appear in the sent emails.

  4. Sendgrid: How to add a dynamic link to an email template?

    Sendgrid is replacing your link with a intermediary redirect for click tracking. This user experienced the same issue. From the Sendgrid dashboard, go to Settings->Tracking and …

  5. ADB2C Custom policy for sending email through sendgrid

    Mar 15, 2021 · The sendgrid account is configured correctly and I am able to send email through Postman. The postman request, using the same sendgrid api key I am setting in Azure policy key

  6. function - Email from Azure using SendGrid - Stack Overflow

    Aug 7, 2024 · The issues you encounter during the deployment to Azure likely due to the differences in environment configurations between your local setup and Azure.Here’s below …

  7. Receiving emails via SendGrid - Stack Overflow

    Sep 12, 2012 · 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 [email protected] and we reply via …

  8. Reply to sender via email with SendGrid - Stack Overflow

    Mar 14, 2018 · I have a use-case where user A can send user B a message from our website, which I am using SendGrid to send the message in an email. Then user B can reply to the …

  9. SSL Certificate Verification Failed with Sendgrid send

    Jan 16, 2025 · It is not sendgrid specific but Python version specific. I was able to use the link provided in this answer to find the script that I needed to run to update the SSL certs for python.

  10. email - sendgrid multiple recipients c# - Stack Overflow

    var personalization = new Personalization(); foreach (Email email in emailList) { personalization.AddTo(email); } This personalization object also allows more customization …