|
The CFX creates the file with specific, standard
formatting. You can see the logic in the CFX source code (I'll reproduce
this below). If you need different formatting then you would need to
either recompile the CFX tag or use the older version (I think 2.9.6 may do what
you want). You can install the older version on the same server as the
newer version as long as you register it as a different CFX name in the CF
administrator.
HTH,
Howie
---- CFX formatting criteria -----
// MIME encoded messages have 3 general
envelopes:
// // 1 - text only (multipart/alternative) // 2 - text plus embedded content (multipart/related) // 3 - text with attachments (multipart/mixed) // // we need to construct the envelopes to contain the proper content as follows: // // +----- multipart/mixed -----------------------+ // | | // | +----- multipart/related ---------------+ | // | | | | // | | +----- multipart/alternative -----+ | | // | | | | | | // | | | +---------------------------+ | | | // | | | | | | | | // | | | | plain text | | | | // | | | | | | | | // | | | +---------------------------+ | | | // | | | | | | | | // | | | | HTML text | | | | // | | | | | | | | // | | | +---------------------------+ | | | // | | | | | | // | | +----- multipart/alternative -----+ | | // | | | | // | | +---------------------------------+ | | // | | | | | | // | | | embedded content for HTML | | | // | | | | | | // | | | images, sounds, etc. | | | // | | | | | | // | | +---------------------------------+ | | // | | | | // | +----- multipart/related ---------------+ | // | | // | +---------------------------------------+ | // | | | | // | | attachment 1 | | // | | | | // | +---------------------------------------+ | // | +---------------------------------------+ | // | | | | // | | attachment 2 | | // | | | | // | +---------------------------------------+ | // | . | // | . | // | . | // | +---------------------------------------+ | // | | | | // | | attachment N | | // | | | | // | +---------------------------------------+ | // | | // +----- multipart/mixed -----------------------+ // // // So, we need to build the envelope properly. If there is only text // then we only need the multipart/alternative envelope and the main // content type is multipart/alternative. If the html portion of the // email has embedded content then we need to have multipart/related // as the main content type and have a sub envelope of multipart/alternative. // If the email also has attachments then the main content type becomes // multipart/mixed. //
|
- [iMS] Content-Type Marc Lichtenfeld
- RE: [iMS] Content-Type Howie Hamlin
- RE: [iMS] Content-Type Marc Lichtenfeld
