Mail Application development in .Net
-
Hi! All, I am .net programmer (bigenner), whant to develop a mail application using .Net, can any one please help me how to start of withh the mail application development. preferabaly using C#, than vb.net Please do help me out.... :)
chandu
You can use the MailMessage Object to fill the from, to, subject, address. and then use the smtpclient object to set the SMTP server to be used and to send the mail Message. jamil Abou khalil
-
You can use the MailMessage Object to fill the from, to, subject, address. and then use the smtpclient object to set the SMTP server to be used and to send the mail Message. jamil Abou khalil
**Thanks!**for the information you have given i have found a lot of details about how to go witht the mail application developement. but still if you would provide me some links which can give me the download of the sample mail application right from the scratch. it would be more help full..... :)
chandu
-
Hi! All, I am .net programmer (bigenner), whant to develop a mail application using .Net, can any one please help me how to start of withh the mail application development. preferabaly using C#, than vb.net Please do help me out.... :)
chandu
well i have made this app long back.. so here is the details.. first include namespace using System.Web.Mail; then follow these steps :- MailMessage mail = new MailMessage(); mail.From = from; mail.To = to; mail.Subject = sub; mail.Body = body; SmtpMail.SmtpServer = server; SmtpMail.Send(mail); I should this should help you. and if you still fce any problem contact me :) <>
-
well i have made this app long back.. so here is the details.. first include namespace using System.Web.Mail; then follow these steps :- MailMessage mail = new MailMessage(); mail.From = from; mail.To = to; mail.Subject = sub; mail.Body = body; SmtpMail.SmtpServer = server; SmtpMail.Send(mail); I should this should help you. and if you still fce any problem contact me :) <>