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.0String HTML Limitations?String HTML Limitations?
Previous
 
Next
New Post
3/24/2008 3:47 PM
 



Using the following code for combining multiple values into one string and sending with an email message:

Dim myStr As String = ("<BODY><P>" & txtName.Text & "<P>" & txtEmail.Text & "<P>" & txtPhone.Text & "<P>" & txtAddress.Text & "<P>" & txtCity.Text & "<P>" & txtState.Text & "<P>" & txtZip.Text & "<P></BODY>")

Odd thing is, when using this code (to select the 7 fields of data) it emails the exact string as seen above.
But, if I reduced the fields collected to 4 or less, the email comes through as normal html (following <p> coding with the field data, rather than exact string as seen above)

Why would the string ignore html format after 4+ fields of data being collected?

 
New Post
3/24/2008 4:35 PM
 

What method are you using to email the values?

Hope I can help,


Brian Dukes
Engage Software
St. Louis, MO
866-907-4002
DNN partner specializing in custom, enterprise DNN development.
 
New Post
3/24/2008 4:39 PM
 

            Try
                Dim myStr As String = ("<BODY><P>" & txtName.Text & "<P>" & txtEmail.Text & "<P>" & txtPhone.Text & "<P>" & txtAddress.Text & "<P>" & txtCity.Text & "<P>" & txtState.Text & "<P>" & txtZip.Text & "<P></BODY>")
                Dim message As New MailMessage(txtTo.Text, txtFrom.Text, txtSubject.Text, myStr)
                Dim emailClient As New SmtpClient("mail.facetdesignstudio.com")
                emailClient.Send(message)
                litStatus.Text = "Message Sent"
            Catch ex As Exception
                litStatus.Text = ex.ToString()
            End Try

 
New Post
3/24/2008 5:02 PM
 

Try setting message.IsBodyHtml = True.

Hope it helps,


Brian Dukes
Engage Software
St. Louis, MO
866-907-4002
DNN partner specializing in custom, enterprise DNN development.
 
New Post
3/24/2008 10:46 PM
 



Very Well.  That made the difference!
...
The email message is mis-labeled as "junk mail".
How can I ensure the message will be received within normal inbox?

 
Previous
 
Next
HomeHomeArchived Discus...Archived Discus...Developing Under Previous Versions of .NETDeveloping Under Previous Versions of .NETASP.Net 2.0ASP.Net 2.0String HTML Limitations?String HTML Limitations?


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