After a bit more reading / searching, I was able to find something that works. Probably the hardest part is the first line.
try
{
Outlook.MailItem tosend = (Outlook.MailItem)Globals.ThisAddIn.Application.CreateItem(Outlook.OlItemType.olMailItem);
tosend.Attachments.Add(mailItem);
tosend.To = "blah@blah.com";
tosend.Subject = "test";
tosend.Body = "blah";
tosend.Save();
tosend.Send();
}
catch (Exception ex)
{
Console.WriteLine("{0} Exception caught: ", ex);
}
@Kris Vandermotten ,