PDFdev is a service provided by PDFzone.com | http://www.pdfzone.com _____________________________________________________________
In FDF, you escape characters with '\' and their hex value. I suspect that you'll be successful using "\0A" (well... "\\0A") instead of '\n'. PDF form submission can take a number of forms, by default. You can submit form data using the same format that web pages use, or through the FDF format. --Mark Storer Software Engineer Cardiff Software #include <disclaimer> typdef std::disclaimer<Cardiff> Discard; > -----Original Message----- > From: Karr, David [mailto:[EMAIL PROTECTED] > Sent: Friday, August 29, 2003 4:17 PM > To: [EMAIL PROTECTED] > Subject: RE: [PDFdev] Send mail with "submitForm" ignores > "\n" in field > va lues > > > > PDFdev is a service provided by PDFzone.com | http://www.pdfzone.com > _____________________________________________________________ > > I'm not even sure how I would have HTML as my "submission > method". The > result of "submitForm" is an email message with an FDF file as the > attachment, and the content of that string with newlines as the email > body. > > > -----Original Message----- > > From: Mark Storer [mailto:[EMAIL PROTECTED] > > > > I'm guessing you'll have to escape the newlines, it's just a > > matter of how > > based on which method of submission you're using. So, are > > you using HTML or > > FDF? > > > > > -----Original Message----- > > > From: Karr, David [mailto:[EMAIL PROTECTED] > > > > > > I have some javascript in my document which builds a string > > in a field > > > with interspersed "\n" characters for newlines. After > setting those > > > values, it uses "submitForm" to send that document through > > > email. When > > > the document is received in email, the text of the field is > > > present, but > > > none of the newlines came through. What do I have to do > > when building > > > the field value so I can newlines in the resulting email? > > To change your subscription: > http://www.pdfzone.com/discussions/lists-pdfdev.html > To change your subscription: http://www.pdfzone.com/discussions/lists-pdfdev.html
