Thanks!  I will give it a try.

Kevin

-----Original Message-----
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
Behalf Of Colin Wilson
Sent: Wednesday, September 22, 2004 9:54 PM
To: [EMAIL PROTECTED]
Subject: RE: cfmail - please help


I had a lot of work to do to get around this issue - part is the content
you provide in the email - but we were able to get a full html based
email through the hotmail junk filters with this... The uuid and the
message ID along with the plain text seemed to work just fine - this
works on cfmx - I have another one also for cf 4.5
 
<cfset randID = CreateUUID()>
 
<cfhttp
url="http://www.oursite.com/admin/newsletter_produce.cfm?newsletterID=#n
ewsl
etterID#" method="get"></cfhttp>
<cfquery datasource="#dsn#" name="sendto">
 Select * from subscribers
 where groupID = 5
</cfquery>
 
<cfquery datasource="#dsn#" name="subjectfind">
Select subject_eng from newsletters where newsletterID = #newsletterID#
</cfquery>
 
<cfloop query="sendto">
 
<cfmail to="#name#<#email#>" cc="[EMAIL PROTECTED]" from="Norco
Web Gurus<#admin_email#>" subject="#subjectfind.subject_eng#"
server="#smtp#"> <cfmailparam name="MIME-Version" value="1.0">
<cfmailparam name="message-ID" value="<#randID##timeformat(todayDate,
"hhmmss")[EMAIL PROTECTED]>">
<cfmailpart type="text/plain" charset="iso-8859-1">
Please check out our newest e-Newsletter online at;
http://www.oursite.com/archive/newsletter_view.cfm?newsletterID=#newslet
terI
D#
</cfmailpart>
<cfmailpart type="text/html" charset="iso-8859-1">
<p><font size="-1">Don't see any images below? See our newsletter in all
it's colourful glory. <a
href="http://www.oursite.com/archive/newsletter_view.cfm?newsletterID=#n
ewsl
etterID#">Click here &raquo;</a></font><br>
See our newsletter en fran&ccedil;ais <a
href="http://www.oursite.com/archive/newsletter_view.cfm?newsletterID=#n
ewsl
etterID#&lang=fra">Click here &raquo;</a></p> #cfhttp.FileContent#
</cfmailpart> </cfmail> </cfloop>

Colin

________________________________

From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
Behalf Of Kevin Fricke
Sent: September 22, 2004 8:15 PM
To: [EMAIL PROTECTED]
Subject: cfmail - please help
Importance: High


I have a problem with the cfmail tag.  Does anyone know how to prevent
these emails from going directly to the bulk email folders in Hotmail,
yahoo, etc.
 
This is a very big problem for a client of mine.
 
Any help is greatly appreciated.
 
Kevin Fricke

----------------------------------------------------------
To post, send email to [EMAIL PROTECTED]
To unsubscribe: 
   http://www.dfwcfug.org/form_MemberUnsubscribe.cfm
To subscribe: 
   http://www.dfwcfug.org/form_MemberRegistration.cfm



----------------------------------------------------------
To post, send email to [EMAIL PROTECTED]
To unsubscribe: 
   http://www.dfwcfug.org/form_MemberUnsubscribe.cfm
To subscribe: 
   http://www.dfwcfug.org/form_MemberRegistration.cfm


Reply via email to