Re: CFMail Send Problem

2010-11-09 Thread Sean Henderson

Experiencing the same issue (blank message body) this past week (as of 
11/09/10) as described in this post of 11/12/2003.

No changes to the template(s) calling CFMail - just started sending blank 
message bodies. Spam score says negative 1 (-1) where a score of 3 or more is 
spam, so that's not it.  CF says it left the building fine.  Records in db say 
there was indeed message content.  Thankfully only happening on our test system 
(in office), not in production (co-lo).  Anyone figure this out? Was it an 
ISP/content filtering issue?

Thanks, Sean
stack: CFMX6.1 (j2sdk1.4.2_11), SQL2K Std, Win2K3 Std R2 SP2.

 ... weird problem occurring with an email send out using CFMail 6.1 from
 a SQL2000 db.  Seems that SOME recipients of the message get a blank/empty
 message body (subject line, to and from fields are OK).
 ... doesn't seem to be email client specific 
 Thanks, Mark


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339011
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CFMail Send Problem

2010-11-09 Thread Jake Churchill

This might have sommething to do with sending multipart MIME messages.
Perhaps one person's client is set to only display plain text and the
message does not contain that part.

Sent from my Droid

On Nov 9, 2010 12:23 PM, Sean Henderson shender...@followup.net wrote:


Experiencing the same issue (blank message body) this past week (as of
11/09/10) as described in this post of 11/12/2003.

No changes to the template(s) calling CFMail - just started sending blank
message bodies. Spam score says negative 1 (-1) where a score of 3 or more
is spam, so that's not it.  CF says it left the building fine.  Records in
db say there was indeed message content.  Thankfully only happening on our
test system (in office), not in production (co-lo).  Anyone figure this out?
Was it an ISP/content filtering issue?

Thanks, Sean
stack: CFMX6.1 (j2sdk1.4.2_11), SQL2K Std, Win2K3 Std R2 SP2.

 ... weird problem occurring with an email send out using CFMail 6.1 from
 a SQL2000 db.  Seems that SOME recipients of the message get a blank/empty
 message body (subject line, to and from fields are OK).
 ... doesn't seem to be email client specific
 Thanks, Mark




~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339013
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CFMail Send Problem

2010-11-09 Thread Wil Genovese

What he said - the message body may look blank, but view the raw source of the 
received email to see what is really there. There could be an encoding issue.


Wil Genovese

One man with courage makes a majority.
-Andrew Jackson

A fine is a tax for doing wrong. A tax is a fine for doing well. 

On Nov 9, 2010, at 12:26 PM, Jake Churchill wrote:

 
 This might have sommething to do with sending multipart MIME messages.
 Perhaps one person's client is set to only display plain text and the
 message does not contain that part.
 
 Sent from my Droid
 
 On Nov 9, 2010 12:23 PM, Sean Henderson shender...@followup.net wrote:
 
 
 Experiencing the same issue (blank message body) this past week (as of
 11/09/10) as described in this post of 11/12/2003.
 
 No changes to the template(s) calling CFMail - just started sending blank
 message bodies. Spam score says negative 1 (-1) where a score of 3 or more
 is spam, so that's not it.  CF says it left the building fine.  Records in
 db say there was indeed message content.  Thankfully only happening on our
 test system (in office), not in production (co-lo).  Anyone figure this out?
 Was it an ISP/content filtering issue?
 
 Thanks, Sean
 stack: CFMX6.1 (j2sdk1.4.2_11), SQL2K Std, Win2K3 Std R2 SP2.
 
 ... weird problem occurring with an email send out using CFMail 6.1 from
 a SQL2000 db.  Seems that SOME recipients of the message get a blank/empty
 message body (subject line, to and from fields are OK).
 ... doesn't seem to be email client specific
 Thanks, Mark
 
 
 
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339015
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


CFMail Send Problem

2003-11-13 Thread Mark Leder
Hi All,

I have a weird problem occuring with an email send out using CFMail 6.1 from
a SQL2000 db.Seems that SOME recipients of the message get a blank/empty
message body (subject line, to and from fields are OK).We've done some
checking and it doesn't seem to be email client specific (for example, I've
tested on Outlook 2002 and 2003 and AOL 9 with no problem, but we have
others using Netscape 7.1, Outlook 98-2000, et al receiving blank messages).

My thought is that there may be a problem with the charset encoding or with
the syntax of cfsavecontent.

Here's the process of what happens:

1) On the application.cfm page for the Admin area

!--- URL and FORM encoding ---
cfset setEncoding(FORM, ISO-8859-1)
cfset setEncoding(URL, ISO-8859-1)
!--- output encoding ---
cfcontent type=text/html; charset=ISO-8859-1

2) Message data from form field (enctype=multipart/form) insered to
MS-SQL2000

3) Query retrieves data from SQL 2000, in particular the
qMailMessage.txtMessage is the body of the message.

4) Message composition

cfoutput
cfsavecontent variable=VARIABLES.textCopy
#qMailMessage.txtMessage##crlf#	
cfif qMailMessage.unsubscribeLinkID NEQ
1#Replace(qMailMessage.unsubscribeLinkText, Chr(10), #lf#,
ALL)##crlf#/cfif
cfif qMailMessage.signatureLineID NEQ
1#Replace(qMailMessage.signatureLineText, Chr(10), #lf#, ALL)#/cfif
/cfsavecontent
/cfoutput

5) Message sendout

!--- Send out to the subscribers ---
cfmail from=#VARIABLES.mailFrom# #VARIABLES.mailFromEmail# 
	query=qSubscribers 
	group=emailAddress 
	groupcasesensitive=no 
	to=#firstname# #lastname# #emailaddress# 
	cc=#copyTo# 
	bcc=#blindCopyTo# 
	subject=#VARIABLES.subjectLine# 
	failto=#VARIABLES.mailFailTo# 
	server=#REQUEST.mailserver#
cfmailpart type=text#VARIABLES.textCopy#/cfmailpart
cfmailparam name=Reply-To value=#VARIABLES.mailFrom#
#VARIABLES.mailFromEmail#
cfmailparam name=Message-ID
value=#CreateUUID()[EMAIL PROTECTED]
/cfmail

===

Thanks, Mark 


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




CFMail Send Problem

2003-11-12 Thread Mark Leder
Hi All,

I have a weird problem occuring with an email send out using CFMail 6.1 from
a SQL2000 db.Seems that SOME recipients of the message get a blank/empty
message body (subject line, to and from fields are OK).We've done some
checking and it doesn't seem to be email client specific (for example, I've
tested on Outlook 2002 and 2003 and AOL 9 with no problem, but we have
others using Netscape 7.1, Outlook 98-2000, et al receiving blank messages).

My thought is that there may be a problem with the charset encoding or with
the syntax of cfsavecontent.

Here's the process of what happens:

1) On the application.cfm page for the Admin area

!--- URL and FORM encoding ---
cfset setEncoding(FORM, ISO-8859-1)
cfset setEncoding(URL, ISO-8859-1)
!--- output encoding ---
cfcontent type=text/html; charset=ISO-8859-1

2) Message data from form field (enctype=multipart/form) insered to
MS-SQL2000

3) Query retrieves data from SQL 2000, in particular the
qMailMessage.txtMessage is the body of the message.

4) Message composition

cfoutput
cfsavecontent variable=VARIABLES.textCopy
#qMailMessage.txtMessage##crlf#	
cfif qMailMessage.unsubscribeLinkID NEQ
1#Replace(qMailMessage.unsubscribeLinkText, Chr(10), #lf#,
ALL)##crlf#/cfif
cfif qMailMessage.signatureLineID NEQ
1#Replace(qMailMessage.signatureLineText, Chr(10), #lf#, ALL)#/cfif
/cfsavecontent
/cfoutput

5) Message sendout

!--- Send out to the subscribers ---
cfmail from=#VARIABLES.mailFrom# #VARIABLES.mailFromEmail# 
	query=qSubscribers 
	group=emailAddress 
	groupcasesensitive=no 
	to=#firstname# #lastname# #emailaddress# 
	cc=#copyTo# 
	bcc=#blindCopyTo# 
	subject=#VARIABLES.subjectLine# 
	failto=#VARIABLES.mailFailTo# 
	server=#REQUEST.mailserver#
cfmailpart type=text#VARIABLES.textCopy#/cfmailpart
cfmailparam name=Reply-To value=#VARIABLES.mailFrom#
#VARIABLES.mailFromEmail#
cfmailparam name=Message-ID
value=#CreateUUID()[EMAIL PROTECTED]
/cfmail

===

Thanks, Mark 


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]