Web Wiz - Green Windows Web Hosting

  New Posts New Posts RSS Feed - How to send automatic email confirmation in .net?
  FAQ FAQ  Forum Search   Events   Register Register  Login Login

How to send automatic email confirmation in .net?

 Post Reply Post Reply
Author
imhotep View Drop Down
Groupie
Groupie
Avatar

Joined: 29 June 2003
Location: United States
Status: Offline
Points: 67
Post Options Post Options   Thanks (0) Thanks(0)   Quote imhotep Quote  Post ReplyReply Direct Link To This Post Topic: How to send automatic email confirmation in .net?
    Posted: 27 June 2007 at 1:30pm
Hello peoples

I want to know how can you send an automatic email confirmation and summary when someone enters data into a database using asp.net? Can someone please point me in the right direction?

Thanks in advance!
Man Know Thyself
Back to Top
michael View Drop Down
Senior Member
Senior Member
Avatar

Joined: 08 April 2002
Location: United States
Status: Offline
Points: 4670
Post Options Post Options   Thanks (0) Thanks(0)   Quote michael Quote  Post ReplyReply Direct Link To This Post Posted: 27 June 2007 at 4:31pm
This is a Sub I use for sending notification emails, just call it on a click event or so:
 

    Private Sub sendadminEmail()
        Try
            Dim ToAddress As String = ConfigurationManager.AppSettings("AdminEmail")
            Dim mm As New MailMessage(emailTextbox.Text, ToAddress)
            mm.Subject = _Subject
            mm.Body = _Body
            mm.IsBodyHtml = False
            Dim smtp As New SmtpClient
           
            smtp.Send(mm)
        Catch ex As Exception
            LogWriter(ex.Message)
        End Try
    End Sub
Back to Top
vbsqluser View Drop Down
Newbie
Newbie


Joined: 05 November 2007
Status: Offline
Points: 5
Post Options Post Options   Thanks (0) Thanks(0)   Quote vbsqluser Quote  Post ReplyReply Direct Link To This Post Posted: 05 November 2007 at 7:19am
Hi,
 
<%@ Import Namespace="System" %>
<%@ Import Namespace="System.Data" %>
<%@ Import Namespace="System.Drawing" %>
<%@ Import Namespace="System.Text" %>
<%@ Import Namespace="System.Data.SqlClient" %>
<%@ Import Namespace="System.Data.SqlTypes" %>
< mailto:%@Im - %@Import Namespace="System.Net.Mail" %>
< mailto:%@Im - %@Import Namespace="System.IO" %>
< mailto:%@Im - %@Import Namespace="System.Net" %>
String strHTMLBody;
                strHTMLBody = "<html><head><title>Confirm your registration.</title></head><body>Congratulations ! You have successfully completed registration.<br /><br />Now you need to confirm your registration.<br /><br />To confirm your registration, click on the link : <A HREF=" + sFullURL + " >" + URLText + "</A><br /><br />Regards,<br />From the team at Jobssite.</body></html> ";

                MailMessage oMessage = new MailMessage();
                oMessage.Subject = "Confirm your registration. JobsSite";
                oMessage.Body = strHTMLBody;
                oMessage.IsBodyHtml = true;
                oMessage.From = new MailAddress(" mailto:jobs@jobs.com - jobs@jobs.com");
                oMessage.To.Add(new MailAddress(txtEmail.Text));
                oMessage.Priority = MailPriority.High;
                SmtpClient client = new SmtpClient("smtp.XXXX.com");
                client.UseDefaultCredentials = true;
                client.Send(oMessage);
 
In the statement, SmtpClient client = new SmtpClient("smtp.XXXX.com"), you need to mention your mail server.
 
Hope this helps.
 



Edited by vbsqluser - 06 June 2013 at 6:44am
Back to Top
 Post Reply Post Reply

Forum Jump Forum Permissions View Drop Down

Forum Software by Web Wiz Forums® version 12.08
Copyright ©2001-2026 Web Wiz Ltd.


Become a Fan on Facebook Follow us on X Connect with us on LinkedIn Web Wiz Blogs
About Web Wiz | Contact Web Wiz | Terms & Conditions | Cookies | Privacy Notice

Web Wiz is the trading name of Web Wiz Ltd. Company registration No. 05977755. Registered in England and Wales.
Registered office: Web Wiz Ltd, Unit 18, The Glenmore Centre, Fancy Road, Poole, Dorset, BH12 4FB, UK.

Prices exclude VAT at 20% unless otherwise stated. VAT No. GB988999105 - $, € prices shown as a guideline only.

Copyright ©2001-2026 Web Wiz Ltd. All rights reserved.