Like I said, I do not think i t is the code since I can resend exactly what the client sends and get the full email, but it is....very simple.
Let me add that the info is saved in a MySQL database into a longtext type. The textarea is defined as follows: <textarea name=message cols=65 rows=15 wrap></textarea> this is saved into the sendemailmain table in the longtext type metnioned above. a batch job then reads the code below. <cfquery datasource=#dbname# name=getemailtosend> Select * from sendemailmain where refnbr = #refnbr# </cfquery> <cfoutput query=getemailtosend> <cfset sendsubject = "#emailsubject#"> <cfset sendemailnbr = "#emailnbr#"> <cfset sendfrom = "#emailfrom#"> <cfset sendtext = "#emailtext#"> <cfset sendattachment = "#attachment#"> </cfoutput> <cfif getemailtosend.recordcount gt 0> <cfquery datasource=#dbname# name=getemaillist> Select * from sendemaillist where emailnbr = #sendemailnbr# </cfquery> <cfoutput query=getemaillist> <cfset sendemailto = "#emailaddress#"> <CFMAIL FROM="#getassnname.name# <#getassnname.email#>" TO="#sendemailto#" SUBJECT="#sendsubject#"> #sendtext# </cfmail> </cfoutput> </cfif> At 07:19 AM 3/27/2002 -0800, you wrote: >Some ideas: > >Assuming you're using a TEXTAREA to creat the mail body, try using the >WRAP="VIRTUAL" attribute/value pair. > >Also, can you post the CFMAIL code? > >I've got 50,000 webmail accounts using CFMAIL creating mail of various >sizes and haven't seen this problem in 3 years of operation so I don't >think it's a CF bug per se. I did have this problem quite some time >ago...maybe '97...and that was resolved using the WRAP attribute if I >remember correctly. > > > >-----Original Message----- >From: Bill Kaigler [mailto:[EMAIL PROTECTED]] >Sent: Wednesday, March 27, 2002 7:10 AM >To: CF-Server >Subject: Re: cfmail issues > > >that is not the issue. my lines are not more than 1024. plus it is not > >the end of the lines it is the beginning. > >kaigler > >At 10:38 AM 3/27/2002 +0100, you wrote: > >Bill Kaigler wrote: > > > > > > I have members that say when they send emails out sometimes the > > > first paragraph (it is always the first part of the email) is > > > truncated. If I look at the table record I can see that all the > > > information is there, so I can remove the possibility that the > > > problem exists before the email is sent. Knowing that cfmail will > > > send bad email address to the undeliv folder I appended a bad email > > > address to each batch being sent out. If I look at this email in > > > the undeliv folder the entire message exists. If I change the > > > x-cf-to (which exists in the cfmail file): to my email address and > > > then move it to the Spool directory, the email is sent out fine. > > > >Wrapping/truncating of long lines. Try cf_wrap from the DevEx. > > > >Jochem > > > > > > ______________________________________________________________________ Get the mailserver that powers this list at http://www.coolfusion.com ------------------------------------------------------------------------------ To unsubscribe, send a message to [EMAIL PROTECTED] with 'unsubscribe' in the body or visit the list page at www.houseoffusion.com
