HTMLBody

It seems that a variable cannot be assign to HTMLBody field. Am'I doing something wrong?

- this line write a bold html phrase in the email body ..HTMLBody = "<HTML><HEAD><BODY><B>Here is the text body</BODY></HTML>"

- this line produce an empty body. The variable TableData contains all the required HTML to construct the table. I Use Response.Write and see all the code in it


..HTMLBody = "<HTML><HEAD><BODY>" & TableData & "</BODY></HTML>"

View Replies


ADVERTISEMENT

How To Insert In CDOSYSMail.HTMLBody

i want to insert data from form into htmlbody in CDOSYS code...i have declared like this:

Dim strUser
strUser = Request.Form("uname")

how to insert strUser into this...

objCDOSYSMail.HTMLBody = "<body>Dear <% & strName & %>, <br>Thank you for register with us <br></body>"

i did like this but it was wrong...how actually it should be?

View Replies View Related

Having Trouble With The Mailer.htmlbody Function

Basically the way it SHOULD work is a fixed sized window opens and displays two tables. The top table (id=fgWindow) displays the graphics; the bottom table has dropdown menus and text boxes.

I can make every item in the bottom window show up in an email (the Sub Button_Click), however I remain unable to get it to put the contents of the fgWindow table into the body of the email.

My only BIG question is, why won't it put the table that I have ID'd as "fgWindow" in the body of the email when I send it? Code:

View Replies View Related

Textbody And Htmlbody CDONYS E-Mail

Could a single CDONYS e-mail have both an htmlbody and a textbody??... You know sort of like what Thunderbird does to ensure best compatability among different platforms.

View Replies View Related

Formatting A HtmlBody Email String To Include Variables

I have this:

1 emailBody = "<html>" & vbCrLf _
2 & "<head>" & vbCrLf _
3 & "<title>Interpreter Request details</title> " &
vbCrLf _
4 & "</head> " & vbCrLf _
5 & "<body> " & vbCrLf _
6 & "<font face=Verdana><b>Interpreter Request
details: " & vbCrLf _
7 & "Requestor: </b><u> <% strFName strLName %></u>"
& vbCrLf _
...
& "</body> " & vbCrLf _
& "</html> " & vbCrLf

In line 7, I need to display the results of the variables strFName and
strLName (and have a space in between the two) but I don't know the proper
formatting. If I just use the & then I get the literal strFname instead of
the value. Could someone please show me the correct syntax for this?

View Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved