Skip to content

Latest commit

 

History

History
17 lines (10 loc) · 544 Bytes

TROUBLESHOOTING.md

File metadata and controls

17 lines (10 loc) · 544 Bytes

If you have a SendGrid issue, please contact our support team.

Table of Contents

Viewing the Request Body

When debugging or testing, it may be useful to examine the raw request body to compare against the documented format.

You can do this right before you call var response = await client.SendEmailAsync(msg); like so:

Console.WriteLine(msg.Serialize());