Checking incoming Email

  • Thread starter Thread starter ken.beaudry
  • Start date Start date
K

ken.beaudry

I am a novice at this....I just downloaded the Windows Mobile 5 SDK,
and I would like to build an application that will monitor incoming
email, and play an audible alert of an email arrives from specific
addresses. I am new to the CF, and I have been searching Google for
a couple of hours with no luck.

Doesn anybody know if it is possible to intercept incoming new email
and check the senders address on WM5?

thank you for any and all help in this matter.
 
Hi,

Try to use the same way than the interception of a SMS but with a
EmailMessage Object.
// Email Reception
email = new MessageInterceptor();
email .InterceptionAction =
InterceptionAction.NotifyAndDelete;
email .MessageReceived += new
MessageInterceptorEventHandler(email_MessageReceived);

private void sms_MessageReceived(object sender,
MessageInterceptorEventArgs e)
{
// Get the SMS
EmailMessage messReceived = new EmailMessage();
messReceived = (EmailMessage )e.Message;
....

BR


Fabien Decret
Windows Embedded Consultant

ADENEO (ADESET)
http://www.adeneo.adetelgroup.com/





(e-mail address removed) a écrit :
 
Thank you for the response. The MessageInterception MessageRecieved
fires for an incoming SMS, but does not fire for an incoming email
message.

Does anybody else have any other ideas?

Thank you
 
Back
Top