如何发送邮件!... [英] HOW TO SEND a mail message !...

查看:67
本文介绍了如何发送邮件!...的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

首先向所有人问好

我从Silverlight网站发送电子邮件时遇到问题.
请任何人帮我如何从我的网站发送消息
(我在Silverllight网站上有ıcon信封,但ıdea没有ıdea.
我希望ppl可以单击图标并向我发送电子邮件,信封图标位于我的网站的上方
网站adr == http://websayfaci.net
在我的网站中使用C#_SİLVERLİGHT_HTML

first hello to all

I have problem with send email from my silverlight Website.
pls any one can hellp me how to send message from my web site
( I have envelop ıcon on my silverllight website but ı dont have any ıdea.
I want ppl can click on icon and wrıte me email the envelop icon is at rıght uper sıde of my web site
website adr== http://websayfaci.net
ı use C#_SİLVERLİGHT_HTML in my web site

推荐答案

.NET框架中的System.Net.Mail命名空间有助于从asp.net发送电子邮件.
System.Net.Mail namespace in .NET framework helps to send email from asp.net.

private static void SendEmail(MailAddress fromAddress, MailAddress toAddress, string subject, string body)
{
    var message = new MailMessage(fromAddress, toAddress)
                      {
                          Subject = subject,
                          Body = body
                      };

    var client = new SmtpClient("smtpServerName");
    client.Send(message);
}


请检查以下网址,

http://www.codeproject.com/Tips/291669/Send-mail- using-Google-Apps.aspx

如果您是从gmail或google应用发送电子邮件,则所有已发送的电子邮件都将存储在gmail的已发送邮件中.

希望这对您有帮助...
Please check the following url,

http://www.codeproject.com/Tips/291669/Send-mail-using-Google-Apps.aspx

If you are sending email from gmail or google apps than all sent email would be store in the sent items of the gmail.

Hope this may help you...


检查
此链接


这篇关于如何发送邮件!...的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆