简体   繁体   中英

Sending ics file with MailKit and Stringbuilder

I'm trying to send an email with a calendar invite, as an ics file attachment. I'm using Mailkit, as my understanding is the system.net.mail is deprecated.

After playing with it, I understand that the "bodybuilder" is looking for a filepath, but that's not what I'm trying to do here, and so I'm sort of lost.

Alot of the documentation on the web seems to be outdated...

public IActionResult ThrEmail(string sendto, string subject, string body)
    {
        if (!String.IsNullOrEmpty(sendto))
        {
            //construct mail
            var message = new MimeMessage();
            message.From.Add(new MailboxAddress("nick", "nic-fleetwood@behr.travel"));
            message.To.Add(new MailboxAddress(sendto));
            message.Subject = subject;
            //message.Body = new TextPart("plain")
            //{
            //    Text = body
            //};

            BodyBuilder emailBody = new BodyBuilder();
            emailBody.TextBody = body;

            //ics file -- use yyyMMddTHHmmssZ format
            StringBuilder str = new StringBuilder();
            //str.AppendLine()
            str.AppendLine("BEGIN:VCALENDAR");
            str.AppendLine("PRODID:-//RYNE MOVING//EN");
            str.AppendLine("VERSION:2.0");
            str.AppendLine("METHOD:PUBLISH");
            //THE EVENT
            str.AppendLine("BEGIN:VEVENT");
            str.AppendLine("DTSTART:20210215T100000");
            str.AppendLine("DTEND:20210215T110000");
            str.AppendLine("DTSTAMP:" + DateTime.Now);
            str.AppendLine("UID:" + Guid.NewGuid());
            str.AppendLine("CREATED:" + DateTime.Now);
            str.AppendLine("X-ALT-DESC;FMTTYPE=text/html:");
            //sb.AppendLine("DESCRIPTION:" + res.Details);
            str.AppendLine("LAST-MODIFIED:" + DateTime.Now);
            str.AppendLine("LOCATION:NYC");
            str.AppendLine("SEQUENCE:0");
            str.AppendLine("STATUS:CONFIRMED");
            str.AppendLine("SUMMARY:");
            str.AppendLine("TRANSP:OPAQUE");
            str.AppendLine("END:VEVENT");

            str.AppendLine("END:VCALENDAR");

            emailBody.Attachments.Add(str.ToString());

            //send the email
            using (var client = new SmtpClient())
            {
                client.Connect("smtp.office365.com", 587, false);

                // Note: only needed if the SMTP server requires authentication
                client.Authenticate("nic-fleetwood@behr.travel", "foobar");

                client.Send(message);
                client.Disconnect(true);
            }
        }

        return View();
    }

AttachmentCollection has several methods to add the specified attachment.

You need to use this one Add(String, Stream) :

var emailBody = new BodyBuilder();

var ics = new StringBuilder();
/* initialize calendar options */

using (var stream = new MemoryStream())
{
    using (var writer = new StreamWriter(stream))
    {
        writer.Write(ics.ToString());

        writer.Flush();
        stream.Position = 0;

        emailBody.Attachments.Add("calendar.ics", stream);
    }
}

or Add(string, byte[]) :

emailBody.Attachments.Add("calendar.ics", Encoding.UTF8.GetBytes(ics.ToString()));

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM