Pop3 to SMTP message custom forwarder in C#

后端 未结 3 1866
旧时难觅i
旧时难觅i 2021-01-01 06:10

I\'d like to write a service that periodically checks a POP3 account for new messages and based on custom business logic forwards the messages to an appropriate \"To\", and

3条回答
  •  执念已碎
    2021-01-01 06:28

    The following SO questions/answers might help finding components for the POP3 part of your porject:

    • Reading Email using Pop3 in C#
    • Free POP3 .NET library?

    And you can use SmtpClient in System.Net.Mail for sending the mails:

    • Sending E-mail using C#

提交回复
热议问题