Nik, I now use cfmail for MX multipart messages as opposed to advancedemail or anything like that.
so far it works fine... <cfmail from='Me <[EMAIL PROTECTED]>' to='#i#' subject='test' server="#mailserver#"><cfmailparam name="Reply-To" value="Him <[EMAIL PROTECTED]>"><cfmailparam name="Errors-To" value="Errors <[EMAIL PROTECTED]>"><cfmailparam name="X-Mailer" value="Mailer"><cfmailparam name='Content-Type' value='multipart/alternative;boundary="#boundary#"'> --#boundary# Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit #text# --#boundary# Content-Type: text/html; charset=us-ascii Content-Transfer-Encoding: 7bit #html# --#boundary#-- </cfmail> > -----Original Message----- > From: Niklas Richardson [mailto:[EMAIL PROTECTED] > Sent: 27 March 2003 15:31 > To: [EMAIL PROTECTED] > 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]
