本文介绍了通过C#程序发送邮件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

Hello Experts,

i正在开发一个用户可以通过gui界面发送邮件的应用程序...



gmail主机,但我想让它与hotmail一起工作......需要帮助..

pop3.live.com无法正常工作....

Hello Experts,
i am developing an application where a user can send mail through gui interface...

its fine working with gmail host, but i want it to work fine with hotmail... Need Help..
pop3.live.com is not working....

推荐答案

Incoming: pop3.live.com
Outgoing: smtp.live.com      // User Name is your entire email address eg. : [email protected]
password: YourPassword       // You need to turn on "My outgoing server (SMTP) requires authentication"

Incoming Server Port: 995    // (Requires SSL)
Outgoing Server Port: 25     // (Requires TLS)







问候,

- Manfred


这篇关于通过C#程序发送邮件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-02 00:45