如何在服务器上自动阅读和回复电子邮件

时间:2011-06-20 17:45:08

标签: asp.net email-integration

我知道如果只知道“To”,如何从服务器发送电子邮件,

public class SentEmail:System.Web.Services.WebService     {

    [WebMethod]
    public string Sending_Email(string strEmailAddrFrom, 
string[] strEmailAddrTo, int intTotalEmailTo, string strAttachement)
    {
        EmailAlert NewMail = new EmailAlert();
        return NewMail.EmailSent(strEmailAddrFrom, 
    strEmailAddrTo, intTotalEmailTo, strAttachement);
    }
}

但问题是如何在服务器(编写Web服务的地方)中不断读取所有传入的电子邮件(可能来自gmail), 并检测发件人ex:abc@xyz.com ...并回复他。 这是某种自动回复,但需要回复检测到的发件人

1 个答案:

答案 0 :(得分:0)

听起来您需要一项服务来轮询您的电子邮箱。您可以使用http://sourceforge.net/projects/hpop/之类的东西与gmail的POP3服务器进行通信。