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.0 [DNN 4.5.3] Including email notification in a new module [DNN 4.5.3] Including email notification in a new module
Previous
 
Next
New Post
8/31/2007 12:49 PM
 

Hi,

I am developing a new module and i would like to integrate the email notification of the DNN.

How can i do this?

Thanks in advance for any help :)

 
New Post
8/31/2007 5:20 PM
 

All you have to do is call the SendMail routine.  In your codebehind, there are a few important elements.  I'm sure there are multiple ways to do this, but this process always works for me.

In your codebehind...

'Set a few protected/public variables
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"))



'Create a subroutine to handle the mailing
        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 = "Message Subject 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


All that's left is to actually call it.  Where ever the event is that you want to fire the message (eg: onclick for a button) just call SendEmail().

Of course, you can do all kinds of message customization before or during the msgText portion so the message is personalized, context aware, etc.

 

 
New Post
9/3/2007 4:48 AM
 

Thanks for the help professorw1 ;)

 
Previous
 
Next
HomeHomeArchived Discus...Archived Discus...Developing Under Previous Versions of .NETDeveloping Under Previous Versions of .NETASP.Net 2.0ASP.Net 2.0 [DNN 4.5.3] Including email notification in a new module [DNN 4.5.3] Including email notification in a new module


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