Not much blah blah..here is the whole code.. Let you guys be saved atleast...
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Diagnostics;
using Microsoft.Office.Interop.Outlook;
using System.Runtime.InteropServices;
using Microsoft.Exchange.WebServices.Data;
namespace BTROutlookConsole
{
class Program
{
static void Main(string[] args)
{
ExchangeService service = new ExchangeService(ExchangeVersion.Exchange2007_SP1);
MessageBody messageBody = new Microsoft.Exchange.WebServices.Data.MessageBody();
service.Credentials = new System.Net.NetworkCredential("username", "pwd", "domain.com");
service.AutodiscoverUrl("username@domain.com");
object o = service.FindItems(WellKnownFolderName.Inbox, new ItemView(10));
FindItemsResults
FolderView view = new FolderView(100);
view.PropertySet = new PropertySet(BasePropertySet.IdOnly);
view.PropertySet.Add(FolderSchema.DisplayName);
view.Traversal = FolderTraversal.Deep;
FindFoldersResults findFolderResults = service.FindFolders(WellKnownFolderName.Inbox, view);
foreach (Item item in findResults.Items)
{
Console.WriteLine(item.Subject);
if (item.Subject.ToString().ToLower() == "SUBJECT1".ToLower())
{
item.Load();
messageBody = item.Body.ToString();
Console.WriteLine("IsNew: " + item.IsNew);
Console.WriteLine("To: " + item.DisplayTo);
Console.WriteLine("Subject: " + item.Subject);
Console.WriteLine("Message Body: " + item.Body.ToString());
Console.WriteLine("Date & Time Received: " + item.DateTimeReceived);
Console.WriteLine("HasAttachments: " + item.HasAttachments);
string mailBody = item.Body.ToString();
System.Net.Mail.MailMessage message = new System.Net.Mail.MailMessage();
message.To.Add("salini.haridas@uniquegroup.com");
message.Subject = "From YesFolder";
message.From = new System.Net.Mail.MailAddress("username@domain.com", "Test Subject");
message.Body = mailBody;
message.IsBodyHtml = true;
System.Net.Mail.SmtpClient smtp = new System.Net.Mail.SmtpClient("exname.domain.com");
smtp.Send(message);
item.Move(findFolderResults.Folders[0].Id);
}
}
}
}
}
This program assumes the Microsoft.Exchange.WebServices is added as reference to the project.
Happy programming guys..So good to c you after so long...Hey n between nowadays I am trying my luck in AX 2012 too.. So may be next time I can give you something from that.. :)