pop3 - How to read any email account from a domain using C#? -


I think these are two types of questions that are tied together.

Read and parse email using POP3 I need to be able to do this, however, I need to be able to work with any email address.

I am trying to submit content by emailing users to a specific email address, which will automatically know which account the content should be linked to.

Is there a good way to create these email addresses on the fly in C # and check these email accounts for content submissions?

Alternatively, there is a way to create an "wildcard" email account that receives all the emails sent to the domain and allows me to see which address was addressed?

Most email servers will allow you to route all unchanging emails to a specific mailbox (though this The details of how to do it will depend on the mail server). From there, you should be able to get the address that was sent to the to header of the message.


Comments

Popular posts from this blog

windows - Heroku throws SQLITE3 Read only exception -

lex - Building a lexical Analyzer in Java -

python - rename keys in a dictionary -