Products

Solutions

Resources

Partners

Community

Blog

About

QA

Ideas Test

New Community Website

Ordinarily, you'd be at the right spot, but we've recently launched a brand new community website... For the community, by the community.

Yay... Take Me to the Community!

Welcome to the DNN Community Forums, your preferred source of online community support for all things related to DNN.
In order to participate you must be a registered DNNizen

HomeHomeArchived Discus...Archived Discus...Developing Under Previous Versions of .NETDeveloping Under Previous Versions of .NETASP.Net 2.0ASP.Net 2.0Sending Email to user automaticallySending Email to user automatically
Previous
 
Next
New Post
7/25/2007 1:55 PM
 

I have a set of modules for which users can proposed items but which only moderators can approve them.  I want to set up a system which automatically emails the user when their suggestion is approved.  I have the users id available and I can retrieve the email address through setting up a simple stored procedure and referencing that in my code but it seems to me that this is probably something fairly standard which I'm too stupid to spot the normal method of doing.  After all it's a standard part of the forum process.

I'd be really grateful if anyone can tell me how to write the code for this.

Thanks in advance.

 
New Post
7/25/2007 2:24 PM
 

You're right; this is fairly standard.  You need a few Protected variables and your email routine.

        Protected MsgSubject As String
        Protected MsgBody As String
        Public Attachment As String
        Public SendMethod As String
        Public SMTPServer As String = Convert.ToString(Common.Globals.HostSettings("SMTPServer"))
        Public SMTPAuthentication As String = Convert.ToString(Common.Globals.HostSettings("SMTPAuthentication"))
        Public SMTPUsername As String = Convert.ToString(Common.Globals.HostSettings("SMTPUsername"))
        Public SMTPPassword As String = Convert.ToString(Common.Globals.HostSettings("SMTPPassword"))

 

 

        Private Sub SendEmail()
            Dim MsgText As String = ""

            MsgText += "<table width=625>"
            MsgText += "<tr>"
            MsgText += "<td>Email Body Text Goes Here...</td>"
            MsgText += "</tr>"
            MsgText += "</table>"

            'Email Routines
            Dim OpenEmailFormatting As String
            OpenEmailFormatting = ""
            OpenEmailFormatting += "<!DOCTYPE HTML PUBLIC ""-//W3C//DTD HTML 4.0 Transitional//EN"">"
            OpenEmailFormatting += "<HTML><HEAD><TITLE></TITLE>"
            OpenEmailFormatting += "<META http-equiv=Content-Type content=""text/html; charset=iso-8859-1"">"
            OpenEmailFormatting += "</HEAD><BODY>"

            Dim CloseEmailFormatting As String
            CloseEmailFormatting = "</BODY></HTML>"

            'TO
            MsgSubject = "Email Subject Text Goes Here..."
            MsgBody = OpenEmailFormatting & MsgText & CloseEmailFormatting

            Services.Mail.Mail.SendMail(UserInfo.Email, UserInfo.Email, "", "", Services.Mail.MailPriority.Normal, MsgSubject, Services.Mail.MailFormat.Html, System.Text.Encoding.UTF8, MsgBody, "", SMTPServer, SMTPAuthentication, SMTPUsername, SMTPPassword)
        End Sub
 

 Be sure to pay attention to intellitype when you are inside the SendMail routine.  You'll want to make sure all the options are set properly.  There are a few overloads.  Find the one that works best for you.

 

 
Previous
 
Next
HomeHomeArchived Discus...Archived Discus...Developing Under Previous Versions of .NETDeveloping Under Previous Versions of .NETASP.Net 2.0ASP.Net 2.0Sending Email to user automaticallySending Email to user automatically


These Forums are dedicated to discussion of DNN Platform and Evoq Solutions.

For the benefit of the community and to protect the integrity of the ecosystem, please observe the following posting guidelines:

  1. No Advertising. This includes promotion of commercial and non-commercial products or services which are not directly related to DNN.
  2. No vendor trolling / poaching. If someone posts about a vendor issue, allow the vendor or other customers to respond. Any post that looks like trolling / poaching will be removed.
  3. Discussion or promotion of DNN Platform product releases under a different brand name are strictly prohibited.
  4. No Flaming or Trolling.
  5. No Profanity, Racism, or Prejudice.
  6. Site Moderators have the final word on approving / removing a thread or post or comment.
  7. English language posting only, please.
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out