malek alsafadi

malek alsafadi

  • 1.5k
  • 93
  • 1.5k

don't send attachments to cc / outlook addin

Jan 27 2013 3:33 AM
private void Application_ItemSend(Outlook.MailItem Item, ref bool Cancel)
{
	GetMessageID_NEW(null, Item, Item, "OUTGOING");
	if (Item.Attachments.Count > 0) {
		if ((Item.CC != null)) {
			if (MessageBox.Show("Do you want to send the attachments to CC(s)?", "", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes) {
				// What should I write here?
			}
		}
	}
}