H
hash
Hello.
"Message was not sent to recipient"
I got this message when trying to send email from my AddIn. I am not
using Exchange, just a smtp.
This is my code for sending.
NS.Logon(null, null, true, true);
Outlook.MAPIFolder oOutboxFolder =
NS.GetDefaultFolder(Outlook.OlDefaultFolders.olFolderOutbox);
Outlook._MailItem oMailItem =
(Outlook._MailItem)application.CreateItem(Outlook.OlItemType.olMailItem);
Outlook.Recipient oRecip =
(Outlook.Recipient)oMailItem.Recipients.Add(Settings.Default.Email);
oRecip.Resolve();
oMailItem.Subject = "Calendar events for: ";
oMailItem.Body = builder.ToString();
oMailItem.SaveSentMessageFolder = oOutboxFolder;
oMailItem.Save();
oMailItem.Send();
"Message was not sent to recipient"
I got this message when trying to send email from my AddIn. I am not
using Exchange, just a smtp.
This is my code for sending.
NS.Logon(null, null, true, true);
Outlook.MAPIFolder oOutboxFolder =
NS.GetDefaultFolder(Outlook.OlDefaultFolders.olFolderOutbox);
Outlook._MailItem oMailItem =
(Outlook._MailItem)application.CreateItem(Outlook.OlItemType.olMailItem);
Outlook.Recipient oRecip =
(Outlook.Recipient)oMailItem.Recipients.Add(Settings.Default.Email);
oRecip.Resolve();
oMailItem.Subject = "Calendar events for: ";
oMailItem.Body = builder.ToString();
oMailItem.SaveSentMessageFolder = oOutboxFolder;
oMailItem.Save();
oMailItem.Send();