Checking incoming Email

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.
 
F

Fabien

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 :
 
K

ken.beaudry

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top