Click here to Skip to main content
15,888,113 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Suppose I have an email id info@xyz.com. I want to redirect all the emails send to this address or sent from this address to my message queue(eg: @".\Private$\MyQueue") . How can i achieve that?

What I have tried:

I have tried sending and receiving using two forms but actually i want to redirect all the emails send to this id to queue first.
Posted
Updated 2-Jun-16 2:41am

1 solution

You would have to write your own email server, supporting IMAP, POP3 and SMTP, that does this. The clients would have to connect to this email server, where you'd do your processing and formatting for a MSMQ message and queue this object up.

For incoming mail, this server would have to be visible to outside servers and be registered as the mail server for your email domain.
 
Share this answer
 

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