Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8146109
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T13:53:02+00:00 2026-06-06T13:53:02+00:00

I’m going to be building out a parsing controller in my MVC application and

  • 0

I’m going to be building out a parsing controller in my MVC application and wondering if anyone has already done this.

http://sendgrid.com/docs/API_Reference/Webhooks/parse.html

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-06T13:53:05+00:00Added an answer on June 6, 2026 at 1:53 pm

    In case anyone is trying to do this in ASP.NET MVC, here is my code snipped to parse Sendgrid API Webhook call.

        [HttpPost]
        [Transaction]
        [ValidateInput(false)]
        public ActionResult SendGrid(int attachments, string charsets, string from, string headers, string html, string subject, string envelope, string text, string to, string cc) {
            try {
                StringBuilder logText = new StringBuilder();
                logText.AppendLine("From: " + from);
                logText.AppendLine("Headers: " + headers);
                logText.AppendLine("Text: " + text);
                logText.AppendLine("Html: " + html);
                logText.AppendLine("To: " + to);
                logText.AppendLine("Cc: " + cc);
                logText.AppendLine("Subject: " + subject);
                logText.AppendLine("Attachments: " + attachments);
    
                //Envelope Json
                Envelope envelopeObject = null;
                if (!string.IsNullOrEmpty(envelope)) {
                    envelopeObject = JsonConvert.DeserializeObject<Envelope>(envelope);
                    if (envelopeObject != null) {
                        logText.AppendLine("Envelope: [from]: " + envelopeObject.From);
                        if (envelopeObject.To != null && envelopeObject.To.Length > 0)
                            foreach (var envelopeTo in envelopeObject.To)
                                logText.AppendLine("Envelope: [To]: " + envelopeTo);
                    }
                }
    
                //Charsets Json
                CharsetRequest charsetsObject = null;
                if (!string.IsNullOrEmpty(charsets)) {
                    charsetsObject = JsonConvert.DeserializeObject<CharsetRequest>(charsets);
                    if (charsetsObject != null) {
                        logText.AppendLine("Charsets: [To]: " + charsetsObject.To);
                        logText.AppendLine("Charsets: [From]: " + charsetsObject.From);
                        logText.AppendLine("Charsets: [Text]: " + charsetsObject.Text);
                        logText.AppendLine("Charsets: [Subject]: " + charsetsObject.Subject);
                        logText.AppendLine("Charsets: [Html]: " + charsetsObject.Html);
                    }
                }
    
                List<EmailAttachment> emailAttachments = new List<EmailAttachment>();
                if (attachments > 0) {
                    for (int i = 0; i < attachments; i++) {
                        HttpPostedFileBase file = Request.Files[i];
                        if (file.ContentLength > 0) {
                            var attachement = new EmailAttachment();
                            attachement.ContentLength = file.ContentLength;
                            attachement.ContentType = file.ContentType;
                            attachement.Filename = file.FileName;
                            attachement.CreateBy = 1;
                            attachement.CreateDate = DateTime.Now.ToUniversalTime();
                            logText.AppendLine("File: [FileName]: " + file.FileName);
                            logText.AppendLine("File: [ContentType]: " + file.ContentType);
                            logText.AppendLine("File: [FileSize]: " + file.ContentLength);
                            byte[] fileImage = new byte[attachement.ContentLength];
                            file.InputStream.Read(fileImage, 0, attachement.ContentLength);
                            attachement.FileContent = fileImage;
                            emailAttachments.Add(attachement);
                        }
                    }
                }
    
                List<MailAddress> toEmailAddress = new List<MailAddress>();
                MailAddress dropboxEmail = null;
    
                //Parsing Headers
                Regex toline = new Regex(@"(?im-:^To\s*:\s*(?<to>.*)$)");
                Regex ccline = new Regex(@"(?im-:^Cc\s*:\s*(?<to>.*)$)");
    
                MailAddress senderEmail = new MailAddress(from);
    
                if (!string.IsNullOrEmpty(to))
                    toEmailAddress.Add(new MailAddress(to));
    
                if (!string.IsNullOrEmpty(cc))
                    toEmailAddress.Add(new MailAddress(cc));
    
                //Envelope Json
                if (!string.IsNullOrEmpty(envelope)) {
                    envelopeObject = JsonConvert.DeserializeObject<Envelope>(envelope);
                    if (envelopeObject != null) {
                        if (envelopeObject.To != null && envelopeObject.To.Length > 0)
                            foreach (var envelopeTo in envelopeObject.To) {
                                MailAddress mailTmp = new MailAddress(envelopeTo.Trim().ToLower());
                                if (mailTmp.User.Trim().StartsWith("dropbox", StringComparison.InvariantCultureIgnoreCase))
                                    dropboxEmail = mailTmp;
                                else
                                    toEmailAddress.Add(mailTmp);
                            }
                    }
                }
    
                foreach (var email in ParseMIMEEmailAddresses(toline.Match(headers).Groups["to"].Value)) {
                    MailAddress mailTmp = new MailAddress(email.Trim().ToLower());
                    if (mailTmp.User.Trim().StartsWith("dropbox", StringComparison.InvariantCultureIgnoreCase))
                        dropboxEmail = mailTmp;
                    else
                        toEmailAddress.Add(mailTmp);
                }
    
                foreach (var email in ParseMIMEEmailAddresses(ccline.Match(headers).Groups["to"].Value)) {
                    MailAddress mailTmp = new MailAddress(email.Trim().ToLower());
                    if (mailTmp.User.Trim().StartsWith("dropbox", StringComparison.InvariantCultureIgnoreCase))
                        dropboxEmail = mailTmp;
                    else
                        toEmailAddress.Add(mailTmp);
                }
    
                foreach (var message in toEmailAddress)
                    logText.AppendLine("HEADER PARSE [To]: " + message.Address);
    
                if (dropboxEmail != null)
                    logText.AppendLine("Dropbox Email: " + dropboxEmail.Address);
    
                var dropLog = new DropboxLog {
                    CreateDate = DateTime.Now.ToUniversalTime(),
                    Log = logText.ToString()
                };
                _dropboxLogRepository.SaveOrUpdate(dropLog);
                _dropboxLogRepository.DbContext.CommitChanges();
    
                if (dropboxEmail == null)
                    return new HttpStatusCodeResult(500);
    
                if (toEmailAddress.Count == 0)
                    return new HttpStatusCodeResult(500);
    
                //Validate the the email came from a valid user/dropbox key.
                //TODO Also validate alias here
                var dropBoxKey = dropboxEmail.User.Split('+')[1];
                if (string.IsNullOrEmpty(dropBoxKey))
                    return new HttpStatusCodeResult(500);
                var user = _userService.GetUserByEmailDropBoxId(senderEmail.Address, dropBoxKey);
                if (user == null)
                    return new HttpStatusCodeResult(500);
    
                //Create email object
                var emailToAdd = new Email {
                    CreateBy = user.Id,
                    CreateDate = DateTime.Now.ToUniversalTime(),
                    BodyText = text,
                    BodyHtml = html,
                    Subject = subject,
                    Sender = user,
                    EmailDate = DateTime.Now.ToUniversalTime(),
                    Client = user.Client
                };
    
                foreach (var file in emailAttachments) {
                    file.CreateBy = user.Id;
                    emailToAdd.AddAttachment(file);
                }
    
                //Get all leads by email address list
                List<string> toEmails = toEmailAddress.Select(s => s.Address).ToList();
                foreach (Lead lead in _leadService.GetLeadsByEmails(user.Client.Id, user.Id, toEmails))
                    lead.AddEmail(emailToAdd);
    
                foreach (Contact contact in _contactService.GetContactsByEmails(user.Client.Id, user.Id, toEmails))
                    contact.AddEmail(emailToAdd);
    
                return new HttpStatusCodeResult(200);
            }
            catch (Exception ex) {
                var dropLog = new DropboxLog {
                    CreateDate = DateTime.Now.ToUniversalTime(),
                    Log = ex.Message
                };
                _dropboxLogRepository.SaveOrUpdate(dropLog);
                _dropboxLogRepository.DbContext.CommitChanges();
                throw;
            }
        }
    
        private static IEnumerable<string> ParseMIMEEmailAddresses(string lineToParse) {
            List<string> emails = new List<string>();
    
            int from = 0;
            int position = 0;
            string emailText;
    
            while (from < lineToParse.Length) {
                int found = (found = lineToParse.IndexOf(',', from)) > 0 ? found : lineToParse.Length;
                from = found + 1;
                emailText = lineToParse.Substring(position, found - position);
    
                try {
                    MailAddress addy = new MailAddress(emailText.Trim());
                    emails.Add(addy.Address);
                    position = found + 1;
                }
                catch (FormatException) {
                    //Log parsing error to database for future consideration.
    
                }
            }
    
            return emails;
        }
    
    public class SendGridRequest
    {
        public string Envelope { get; set; }
        public string Charsets { get; set; }
        public string SPF { get; set; }
        public int Attachments { get; set; }
        public string DKIM { get; set; }
        public string Headers { get; set; }
        public string From { get; set; }
        public string Html { get; set; }
        public string Subject { get; set; }
        public string Text { get; set; }
        public string To { get; set; }
        public string CC { get; set; }
    }
    
    public class Envelope
    {
        public string From { get; set; }
        public string[] To { get; set; }
    }
    
    public class CharsetRequest
    {
        public string From { get; set; }
        public string Html { get; set; }
        public string Subject { get; set; }
        public string Text { get; set; }
        public string To { get; set; }
        public string Cc { get; set; }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
Does anyone know how can I replace this 2 symbol below from the string
I have a .ini file as follows: [playlist] numberofentries=2 File1=http://87.230.82.17:80 Title1=(#1 - 365/1400) Example
link Im having trouble converting the html entites into html characters, (&# 8217;) i
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I want to count how many characters a certain string has in PHP, but
For some reason, after submitting a string like this Jack’s Spindle from a text
Basically, what I'm trying to create is a page of div tags, each has
this is what i have right now Drawing an RSS feed into the php,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.