Welcome to Dream.In.Code
Become an Expert!

Join 149,477 Programmers for FREE! Get instant access to thousands of experts, tutorials, code snippets, and more! There are 1,804 people online right now. Registration is fast and FREE... Join Now!




Need to Export data form table to dIrect in to mail

 
Reply to this topicStart new topic

Need to Export data form table to dIrect in to mail

marketinggenieus
11 Apr, 2007 - 11:12 PM
Post #1

New D.I.C Head
*

Joined: 11 Apr, 2007
Posts: 2


My Contributions
hi ,

i am asp.net learner. i got the project .so in that project contact us page is there i put the text box for Email Id and address ....etc. now i want while click on the submit the mail address and data will be directly mail to admin of the site ....pls help me for this problem .......send me code in vb or C# .net


rolleyes.gif :rolleye icon_up.gif icon_up.gif icon_up.gif icon_up.gif icon_up.gif icon_up.gif icon_up.gif s:
User is offlineProfile CardPM
+Quote Post

dkirkland
RE: Need To Export Data Form Table To DIrect In To Mail
16 Apr, 2007 - 03:11 AM
Post #2

New D.I.C Head
Group Icon

Joined: 13 Apr, 2007
Posts: 15


Dream Kudos: 25
My Contributions
In terms of actually sending an email using .NET, check out this article.

I have attached a slightly modified version of the SmptDirect class, which was modified to allow sending of HTML mail.

Attached File  SmtpDirect.zip ( 1.85k ) Number of downloads: 106


Usage of the class is as follows:
CODE
SmtpDirect.SmtpServer = "yourMailServer";
MailMessage mail = new MailMessage();
mail.BodyFormat = MailFormat.Html;
mail.From = "example@somedomain.com";
mail.To = "person@somedomain.com";
mail.Subject = "someSubject";
mail.Body = "yourEmailBody";
SmtpDirect.Send(mail);


In this example the email body consists of HTML, which can contain all the usual HTML formatting so you can make the email nice and pretty wink2.gif

Hope this helps,
David.
User is offlineProfile CardPM
+Quote Post

Fast ReplyReply to this topicStart new topic
Time is now: 1/7/09 03:01PM

Be Social

Dream.In.Code RSS Feed Dream.In.Code LinkedIn Group Follow Us On Twitter

Live Help!

Tutorials

Programming

Web Development

Reference Sheets

Code Snippets

DIC Chatroom

Bye Bye Ads

Monthly Drawing

Thumb Drive

Top Contributors

Top 10 Kudos This Month