Hi All
I have set up a string filled with HTML code including a few checkboxes. The reason I have used a string is that I can response.write it so user can see it, then if required I can send an email using this string in HTMLBODY parameter. (jMail) here is a snippit of code.
This works fine except checkboxes are emailed at [X] or [] instead of boxes with or without a tick.
Any ideas?
I have set up a string filled with HTML code including a few checkboxes. The reason I have used a string is that I can response.write it so user can see it, then if required I can send an email using this string in HTMLBODY parameter. (jMail) here is a snippit of code.
Code:
if quoteRS("Weed28") then
Ebody=Ebody + "<input id='Checkbox33' type='checkbox' checked='checked' />"
else
Ebody=Ebody + "<input id='Checkbox34' type='checkbox' />"
end if
Code:
myMail.htmlBody = Ebody
'The following code checks that the referrer is correct, and if so, sends the email to the SMTP server:
If NOT blnSpam Then
myMail.Execute
End If
Set myMail = Nothing
Any ideas?