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.0Need email created in program to display HTMLNeed email created in program to display HTML
Previous
 
Next
New Post
10/25/2007 12:57 PM
 
I am using a DNN module to create an automated email. The body of the email contains a string field from the database containing HTML tags which is put in a field called 'comments' having this value:

OK from craftsman

I would like the tags to be translated so that the text is in HTML but instead it displays as shown above. Here is the code: 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")) Dim msgSummary As String sub sendemail(byval fromemail as string, byval toemail as string, byval cc as string, byval bcc as string) msgSummary = comments Dim OpenEmailFormatting As String OpenEmailFormatting = "" OpenEmailFormatting += "" OpenEmailFormatting += "" OpenEmailFormatting += "" OpenEmailFormatting += "" Dim CloseEmailFormatting As String CloseEmailFormatting = "" 'TO MsgSubject = "Project Signoff " MsgBody = OpenEmailFormatting & msgSummary & CloseEmailFormatting 'SEND If Not appemail Is Nothing Then Services.Mail.Mail.SendMail(fromemail, toemail, cc, bcc, Services.Mail.MailPriority.Normal, MsgSubject, Services.Mail.MailFormat.Html, System.Text.Encoding.UTF8, MsgBody, "", SMTPServer, SMTPAuthentication, SMTPUsername, SMTPPassword) End If End Sub Thanks for helping.
 
New Post
10/25/2007 5:09 PM
 

Sorry about the text being garbled. Here is the corrected version.

I am using a DNN module to create an automated email. The body of the email contains a string field from the database containing HTML tags which is put in a field called 'comments' having this HTML value:

ok signoff from apprentice. 


I would like the tags to be translated so that the text is in HTML as shown above but instead it displays the text and HTML tags.
Here is the code:



sub sendemail(byval fromemail as string, byval toemail as string, byval cc as string, byval bcc as string)

Dim msgSummary As String

msgSummary=comments ' (comments is a text field from the database containing text and HTML tags)

 

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 = "DEAP Signoff-- Test-Disregard"
MsgBody = OpenEmailFormatting & msgSummary & CloseEmailFormatting

'SEND

If Not appemail Is Nothing Then
Services.Mail.Mail.SendMail(fromemail, toemail, cc, bcc, Services.Mail.MailPriority.Normal, MsgSubject, Services.Mail.MailFormat.Html, System.Text.Encoding.UTF8, MsgBody, "", SMTPServer, SMTPAuthentication, SMTPUsername, SMTPPassword)
End If

End Sub

Thanks for helping.

 
Previous
 
Next
HomeHomeArchived Discus...Archived Discus...Developing Under Previous Versions of .NETDeveloping Under Previous Versions of .NETASP.Net 2.0ASP.Net 2.0Need email created in program to display HTMLNeed email created in program to display HTML


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