Click here to Skip to main content
15,885,953 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
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
Posted
Updated 19-Jan-12 16:13pm
v3
Comments
Sergey Alexandrovich Kryukov 19-Jan-12 21:36pm    
Please don't shout (all-caps mean shouting, considered rude) and replace "MESSAGE" with "e-mail message".
--SA

System.Net.Mail namespace in .NET framework helps to send email from asp.net.

C#
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);
}
 
Share this answer
 
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...
 
Share this answer
 
v2
Check
this link
 
Share this answer
 
Hi,
you can check Scott Guthrie's blog post:
http://weblogs.asp.net/scottgu/archive/2005/12/10/432854.aspx[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900