|
|
|||||||||
|
|||||||||
|
|||||||||
| |
||
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
I have a form with a textfield with "physical" wrap turned on. However, when I input data into the textfield it does not wrap nor does it input spaces when it gets sent via email.
I have the BodyFormat=0, MailFormat=0 and Body=HTML. Do any of these values need to be changed? Please advise. Code: Dim MyCDONTSMail2 Dim HTML Set MyCDONTSMail2 = CreateObject("CDONTS.NewMail") HTML = "<!DOCTYPE HTML PUBLIC""-//IETF//DTD HTML//EN"">" HTML = HTML & "<html>" HTML = HTML & "<body bgcolor=""FFFFFF"">" HTML = HTML & Request.Form("email") HTML = HTML & Request.Form("text") HTML = HTML & "</body>" HTML = HTML & "</html>" MyCDONTSMail2.From= Request.Form("email") MyCDONTSMail2.To= "male@mail.com" MyCDONTSMail2.Subject= "asdf" MyCDONTSMail2.BodyFormat=0 MyCDONTSMail2.MailFormat=0 MyCDONTSMail2.Body=HTML MyCDONTSMail2.Send set MyCDONTSMail2=nothing THANKS Last edited by DSmooth : August 28th, 2003 at 03:35 PM. |
![]() |
| Viewing: ASP Free Forums > Programming > ASP Development > CDONTS and Text Wrap? |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|
|