Click here to Skip to main content
15,917,005 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
outlook.Application oApp = new outlook.Application();
outlook.MailItem oMsg = (outlook.MailItem)oApp.CreateItem(outlook.OlItemType.olMailItem);
outlook.Inspector oInspector = oMsg.GetInspector;
oMsg.HTMLBody = "Dear Sir,
Please Assign the Priority for Scaffolding Jobs";
oMsg.Subject = "New Request from Scaffolding Jobs";
outlook.Recipients oRecips = (outlook.Recipients)oMsg.Recipients;
outlook.Recipient oRecip = (outlook.Recipient)oRecips.Add("safihur@fabtech.ae");
oRecip.Resolve();
oMsg.Send();
oRecip = null;
oRecips = null;
oMsg = null;
oApp = null;
Posted
Updated 9-Jun-14 21:23pm
v2
Comments
Thanks7872 10-Jun-14 3:23am    
Repost is not at all allowed here. If you continue this, it will be considered Abuse and may lead to account cancellation.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900