Re: [cfaussie] Re: Help with CFmail sending multiple attachments

2014-03-01 Thread Carmen
Thanks, I got the answer! Sent from Carmen's iPhone On Feb 28, 2014, at 6:48 PM, Andrew Scott andr...@andyscott.id.au wrote: That is why I sent you the link, the link explains how to use cffile. Once you have moved the file that is accessible by ColdFusion, using the destination that is

Re: [cfaussie] Re: Help with CFmail sending multiple attachments

2014-02-28 Thread Carmen Iriarte
Hi Andrew, Big question: How do I make reference to the file I just uploaded when using CFMAILPARAM file=#systempath#\wirelessortho\attachments\#form.xrays# disposition=attachment remove=true? The #form.xrays# is not bringing the file name. cffile action=upload

Re: [cfaussie] Re: Help with CFmail sending multiple attachments

2014-02-28 Thread Andrew Scott
That is why I sent you the link, the link explains how to use cffile. Once you have moved the file that is accessible by ColdFusion, using the destination that is where the file now lives, so if you want to reference the file you just use what you stuck in the destination attribute. Google how to

Re: [cfaussie] Re: Help with CFmail sending multiple attachments

2014-02-21 Thread Carmen Iriarte
Awesome! Thanks Andrew... Let me check that! :S Carmen Iriarte Want a signature like mine?

Re: [cfaussie] Re: Help with CFmail sending multiple attachments

2014-02-20 Thread Andrew Scott
http://help.adobe.com/en_US/ColdFusion/9.0/Developing/WSc3ff6d0ea77859461172e0811cbec1553c-7fe9.html Regards, Andrew Scott WebSite: http://www.andyscott.id.au/ Google+: http://plus.google.com/113032480415921517411 On Thu, Feb 20, 2014 at 8:00 AM, Carmen Iriarte iria...@gmail.com wrote: Hi

Re: [cfaussie] Re: Help with CFmail sending multiple attachments

2014-02-19 Thread Andrew Scott
Carmen, There is a couple of things you need to be aware, first when ColdFusion uploads a file it is stored in a temporary location and is removed at the end of the request ( I believe), therefore you will need to use cffile to move the file to a location that is not web accessible, but

Re: [cfaussie] Re: Help with CFmail sending multiple attachments

2014-02-19 Thread Carmen Iriarte
Hi Andrew, Thanks for the reply. Do you know if this is handle by either: CFMAIL or the enctype=multipart/form-data on the CFFORM or is it part of the CFMAILPARAM file=#Form.xrays# disposition=attachment I'm trying to figure out how the information moves from a form to my inbox :) Carmen

Re: [cfaussie] Re: Help with CFmail sending multiple attachments

2014-02-18 Thread Carmen Iriarte
-Original Message- From: cfau...@googlegroups.com javascript: [mailto: cfau...@googlegroups.com javascript:] On Behalf Of KC Kuok Sent: Thursday, 24 January 2008 3:47 PM To: cfaussie Subject: [cfaussie] Re: Help with CFmail sending multiple attachments Hi guys, just solved my own problem

[cfaussie] Re: Help with CFmail sending multiple attachments

2008-01-23 Thread Andrew Scott
Is #attachments[1].attachedfile# a fully qualified path? Andrew Scott Senior Coldfusion Developer Aegeon Pty. Ltd. www.aegeon.com.au Phone: +613  9015 8628 Mobile: 0404 998 273 -Original Message- From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of KC Kuok Sent:

[cfaussie] Re: Help with CFmail sending multiple attachments

2008-01-23 Thread KC Kuok
Hi guys, just solved my own problem... it seems that cfmailparam needs to be on its own line (and i suspect with 1 blank line spacing). In the loop i did This would not work properly CFLOOP cfmailparam /CFLOOP but this did... CFLOOP cfmailparam /CFLOOP So it seems cfmailparam needs extremely

[cfaussie] Re: Help with CFmail sending multiple attachments

2008-01-23 Thread Andrew Scott
] On Behalf Of KC Kuok Sent: Thursday, 24 January 2008 3:47 PM To: cfaussie Subject: [cfaussie] Re: Help with CFmail sending multiple attachments Hi guys, just solved my own problem... it seems that cfmailparam needs to be on its own line (and i suspect with 1 blank line spacing). In the loop i did