Nik There are problems with MX version and tag is no longer available there, see below from Jochem:
"AdvancedEmail AdvancedEmail is currently unavailable AdvancedEmail is undergoing some major revisions due to dependence on undocumented features that have changed from CF 5 to CF MX. Also, AdvancedEmail heavily depends on the Insert() function, which has been diagnosed with a performance bug in CF MX (it works as documented, just to slow). For these reasons it might take a while before AdvancedEmail is released for CF MX. Update I figured out a way to bypass the performance issues. I have also gotten a bit further with the other issues, but the news there is not as good. The spoolfile format of CF MX is even more broken as it was before. And worse, an unknown part of the information of the email is stored elsewhere, and I don't know where. So if you know where CF MX stores information with regard to additional mail headers while the body is in the spool directory, please let me know. Until I know about that, I will not be able to release a version that works with the CF MX native mailspooler. A version that works with the usual external SMTP servers that accepts RFC 2822 formatted files should be out somewhere in August. Jochem van Dieten" I`ll have to look out for it next August maybe. Colm -----Original Message----- From: Niklas Richardson [mailto:[EMAIL PROTECTED] Sent: 28 March 2003 10:35 To: [EMAIL PROTECTED] Subject: RE: [ cf-dev ] multipart email -- email coming out blank Hey Colm, The tag is called advancedemail. URL: http://www1.oli.tudelft.nl/jochemd/index.cfm?PageID=8 Cheers Niklas > -----Original Message----- > From: Colm Brazel [mailto:[EMAIL PROTECTED] > Sent: Friday, March 28, 2003 10:08 AM > To: [EMAIL PROTECTED] > Subject: RE: [ cf-dev ] multipart email -- email coming out blank > > > > >>Niks gone to the CFUG meeting mate but check the dev exchange its on > there. > > Alex > > What's the name of the tag. Took a look just there and > couldn't find it. > Looking > through pages I found some stuff useful for myself troubleshooting > cfmail/cfpop, Damian earlier post > may see something here as why cfmail sending blank emails, > anyways here's > some notes from devexchange > I took a short while ago looking for the cfmail multipart custom tag, > if Nik around today maybe send that custom tag to > [EMAIL PROTECTED]: > > /cfusion/mail/log/errors.log for any error messages which > might indicate any > errors communicating > with the mail server. If you do find errors in h > http://www.macromedia.com/support/coldfusion/ts/documents/tn17264.htm > > > http://www.macromedia.com/devnet/tip/020.html > > ___________________________________________________________ > > > <cfmail to="[EMAIL PROTECTED]" > from="[EMAIL PROTECTED]" > subject="This is how to explicitly set Mime-Version > to 1.0"> > <cfmailparam name="Mime-Version" value="1.0"> > <cfmailparam name="content-type" value="text/plain" > charset="us-ascii"> > > This is my email message without an attachment. > > </cfmail> > http://www.macromedia.com/cfusion/exchange/index.cfm > > http://www.macromedia.com/support/coldfusion/ts/documents/tn18004.htm > Macromedia has issued a hot fix for ColdFusion Server 5, for > the cfpop tag. > When attempting to retrieve messages with the cfpop tag, if > the message has > multipart > or messagepart headers that extend across a second line, > ColdFusion 5 will > display an > "unhandled exception" error message. This has been reported > as Macromedia > issue 27809. > We have issued a hot fix for this issue below. > > cheers > > Colm > > -----Original Message----- > From: Colm Brazel [mailto:[EMAIL PROTECTED] > Sent: 27 March 2003 18:22 > To: [EMAIL PROTECTED] > Subject: RE: [ cf-dev ] multipart email -- email coming out blank > > > >>There is a multipart custom tag for CF5, > > Nik, > > Any chance of letting me have that for CF5, > > thanks > > > > Colm > > [EMAIL PROTECTED] > > > > www.cbweb.net <http://www.cbweb.net> > [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]> > [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]> > > > > > > > > > -----Original Message----- > From: Niklas Richardson [mailto:[EMAIL PROTECTED] > Sent: 27 March 2003 17:22 > To: [EMAIL PROTECTED] > Subject: RE: [ cf-dev ] multipart email -- email coming out blank > > > Hi Damian, > > There is a multipart custom tag for CF5, I had to write a CFMX version > as I didn't realise you could do it so easily with the code you did! > > Cheers > > Niklas > > > > -----Original Message----- > > From: Damian Watson [mailto:[EMAIL PROTECTED] > > Sent: Thursday, March 27, 2003 5:02 PM > > To: [EMAIL PROTECTED] > > Subject: Re: [ cf-dev ] multipart email -- email coming out blank > > > > > > That may also be the trouble! I've got a stupid setup here at > > the moment > > with MX server on dev machine but using CF5 on web server > so I may be > > missing a trick *don't ask*. I'll tell you when I've got it working. > > > > Nik, does your code work on 5? > > > > ----- Original Message ----- > > From: "Niklas Richardson" <[EMAIL PROTECTED]> > > To: <[EMAIL PROTECTED]> > > Sent: Thursday, March 27, 2003 3:31 PM > > Subject: RE: [ cf-dev ] multipart email -- email coming out blank > > > > > > > Damian, > > > > > > Does this work in CFMX? > > > > > > I wrote a custom tag to output multipart emails for the > > UKCFUG website. > > > But if you can do it like this - well, that's a LOT easier! > > > > > > Cheers > > > > > > Niklas > > > > > > > -----Original Message----- > > > > From: Damian Watson [mailto:[EMAIL PROTECTED] > > > > Sent: Thursday, March 27, 2003 2:13 PM > > > > To: [EMAIL PROTECTED] > > > > Subject: [ cf-dev ] multipart email -- email coming out blank > > > > > > > > > > > > Hi got a problem here. For some reason I'm getting a blank > > > > email sent. No > > > > errors are generated. Anyone come across this b4? Here's the > > > > cfmail code: > > > > > > > > <cfset boundary = CreateUUID()> > > > > <cfmail to="#Form.Email#" from="[EMAIL PROTECTED]" > > > > subject="subject"> > > > > <cfmailparam name="Content-Type" value="multipart/alternative; > > > > boundary=""#boundary#"""> > > > > --#boundary# > > > > Content-Type: text/plain; charset="iso-8859-1" > > > > Content-Transfer-Encoding: > > > > 8bit <cfinclude template="mailtemplates/newmember_plain.cfm"> > > > > --#boundary# > > > > Content-Type: text/html; charset="iso-8859-1" > > > > Content-Transfer-Encoding: > > > > quoted-printable > > > > <cfinclude template="mailtemplates/newmember_html.cfm"> > > > > --#boundary#-- > > > > </cfmail> > > > > > > > > > > > > > > > > -- > > > > ** Archive: > > http://www.mail-archive.com/dev%> 40lists.cfdeveloper.co.uk/ > > > > > > > > > > To unsubscribe, e-mail: > > [EMAIL PROTECTED] > > > > For additional commands, e-mail: > [EMAIL PROTECTED] > > > > For human help, e-mail: [EMAIL PROTECTED] > > > > > > > > > > > > > > > > > > > > -- > > > ** Archive: > > http://www.mail-archive.com/dev%> 40lists.cfdeveloper.co.uk/ > > > > > > > > To unsubscribe, e-mail: > > [EMAIL PROTECTED] > > > For additional commands, e-mail: [EMAIL PROTECTED] > > > For human help, e-mail: [EMAIL PROTECTED] > > > > > > > > > > > > > > -- > > ** Archive: > http://www.mail-archive.com/dev%40lists.cfdeveloper.co.uk/ > > > > To unsubscribe, e-mail: [EMAIL PROTECTED] > > For additional commands, e-mail: [EMAIL PROTECTED] > > For human help, e-mail: [EMAIL PROTECTED] > > > > > > > > -- > ** Archive: http://www.mail-archive.com/dev%40lists.cfdeveloper.co.uk/ > > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > For human help, e-mail: [EMAIL PROTECTED] > > --- > Incoming mail is certified Virus Free. > Checked by AVG anti-virus system (http://www.grisoft.com). > Version: 6.0.459 / Virus Database: 258 - Release Date: 25/02/2003 > > --- > Outgoing mail is certified Virus Free. > Checked by AVG anti-virus system (http://www.grisoft.com). > Version: 6.0.459 / Virus Database: 258 - Release Date: 25/02/2003 > > > -- > ** Archive: http://www.mail-archive.com/dev%40lists.cfdeveloper.co.uk/ > > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > For human help, e-mail: [EMAIL PROTECTED] > > > > > > -- > ** Archive: http://www.mail-archive.com/dev%40lists.cfdeveloper.co.uk/ > > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > For human help, e-mail: [EMAIL PROTECTED] > > --- > Incoming mail is certified Virus Free. > Checked by AVG anti-virus system (http://www.grisoft.com). > Version: 6.0.459 / Virus Database: 258 - Release Date: 25/02/2003 > > --- > Outgoing mail is certified Virus Free. > Checked by AVG anti-virus system (http://www.grisoft.com). > Version: 6.0.459 / Virus Database: 258 - Release Date: 25/02/2003 > > > -- > ** Archive: http://www.mail-archive.com/dev%40lists.cfdeveloper.co.uk/ > > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > For human help, e-mail: [EMAIL PROTECTED] > > -- ** Archive: http://www.mail-archive.com/dev%40lists.cfdeveloper.co.uk/ To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] For human help, e-mail: [EMAIL PROTECTED] --- Incoming mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.459 / Virus Database: 258 - Release Date: 25/02/2003 --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.459 / Virus Database: 258 - Release Date: 25/02/2003 -- ** Archive: http://www.mail-archive.com/dev%40lists.cfdeveloper.co.uk/ To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] For human help, e-mail: [EMAIL PROTECTED]
