auto email generation
-
hi can anyone help me in generating auto emails after checking the credentials of the user.i am using .net2.0/vb.net/oracle thank you
-
hi can anyone help me in generating auto emails after checking the credentials of the user.i am using .net2.0/vb.net/oracle thank you
Please don't cross post. Sending emails via VB.NET is very easy and widely documented. What do you want the auto emails to say, and what credentials are you talking about ?
Christian Graus - Microsoft MVP - C++ "also I don't think "TranslateOneToTwoBillion OneHundredAndFortySevenMillion FourHundredAndEightyThreeThousand SixHundredAndFortySeven()" is a very good choice for a function name" - SpacixOne ( offering help to someone who really needed it ) ( spaces added for the benefit of people running at < 1280x1024 )
-
hi can anyone help me in generating auto emails after checking the credentials of the user.i am using .net2.0/vb.net/oracle thank you
Hi chandra_77, For sending mail in ASP.Net 2.0 ( C# ), you can use the following code
using System.Web.Mail; MailMessage mail = new MailMessage(); mail.To = "mail.From = "sender's mail"; mail.Subject = ""; mail.Body = ""; SmtpMail.SmtpServer = ""; SmtpMail.Send(mail);
Hoping this will help you ^^