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 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 use ColdFusion cffile will result in hundreds of solutions and 
 blogs that will help.
 
 Regards,
 Andrew Scott
 WebSite: http://www.andyscott.id.au/
 Google+:  http://plus.google.com/113032480415921517411
 
 
 
 On Sat, Mar 1, 2014 at 8:30 AM, Carmen Iriarte iria...@gmail.com wrote:
 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 
 destination=#systempath#\wirelessortho\attachments\ 
 nameconflict=makeunique filefield=file1 accept=image/gif, image/jpeg, 
 image/png
 
 Thanks for the help!
 
 Carmen Iriarte
 Our mind is the most powerful tool we have. Nurture it!
 See my vizify bio!
 
 
 
 
 
 On Fri, Feb 21, 2014 at 7:08 PM, Carmen Iriarte iria...@gmail.com wrote:
 Awesome! Thanks Andrew... Let me check that! :S
 
 
 
 Carmen Iriarte
 Want a signature like mine? Click here.
 
 Carmen Iriarte
 Our mind is the most powerful tool we have. Nurture it!
 See my vizify bio!
 
 
 
 
 
 On Thu, Feb 20, 2014 at 12:57 PM, Andrew Scott andr...@andyscott.id.au 
 wrote:
 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 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 Iriarte
 Want a signature like mine? Click here.
 
 Carmen Iriarte
 Our mind is the most powerful tool we have. Nurture it!
 See my vizify bio!
 
 
 
 
 
 On Wed, Feb 19, 2014 at 8:40 AM, Andrew Scott andr...@andyscott.id.au 
 wrote:
 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 
 accessible via ColdFusion.
 
 The location that you move the file too, will be the location that will 
 be used for your initial question.
 
 Regards,
 Andrew Scott
 WebSite: http://www.andyscott.id.au/
 Google+:  http://plus.google.com/113032480415921517411
 
 
 
 On Wed, Feb 19, 2014 at 5:34 PM, Carmen Iriarte iria...@gmail.com 
 wrote:
 Hi there,
 
 I was looking for an answer for a problem I'm running with CFmail and I 
 found this thread.
 
 I have a form that is requesting to submit a file, but when I call the 
 file from CFMAIL I don't receive the entire logic path to the file, 
 just the file name.
 Any idea how to get the entire path?
 
 I'm using this on the form to collect the file name: 
 input type=file name=xrays id=xrays accept=image/jpeg
 
 And this with the CFMAIL.. 
 CFMAILPARAM file=#Form.xrays# disposition=attachment
 
 This is the error I'm receiving:
 The resource IMG_5868.JPG was not found.
 
 Any ideas?
 
 Thanks,
 
 -- 
 You received this message because you are subscribed to a topic in the 
 Google Groups cfaussie group.
 To unsubscribe from this topic, visit 
 https://groups.google.com/d/topic/cfaussie/7THS2h_j518/unsubscribe.
 To unsubscribe from this group and all its topics, send an email to 
 cfaussie+unsubscr...@googlegroups.com.
 
 To post to this group, send email to cfaussie@googlegroups.com.
 Visit this group at http://groups.google.com/group/cfaussie.
 For more options, visit https://groups.google.com/groups/opt_out.
 
 -- 
 You received this message because you are subscribed to the Google Groups 
 cfaussie group.
 To unsubscribe from this group and stop receiving emails from it, send an 
 email to cfaussie+unsubscr...@googlegroups.com.
 
 To post to this group, send email to cfaussie@googlegroups.com.
 Visit this group at http://groups.google.com/group/cfaussie.
 For more options, visit https://groups.google.com/groups/opt_out.
 
 -- 
 You received this message because you are subscribed to a topic in the 
 Google Groups cfaussie group.
 To unsubscribe from this topic, visit 
 https://groups.google.com/d/topic/cfaussie/7THS2h_j518/unsubscribe.
 To unsubscribe from this group and all its topics, send an email to 
 

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
destination=#systempath#\wirelessortho\attachments\
nameconflict=makeunique filefield=file1 accept=image/gif, image/jpeg,
image/png

Thanks for the help!

Carmen Iriarte
Our mind is the most powerful tool we have. Nurture it!
See my vizify bio! https://www.vizify.com/es/521595973f9ead000820





On Fri, Feb 21, 2014 at 7:08 PM, Carmen Iriarte iria...@gmail.com wrote:

 Awesome! Thanks Andrew... Let me check that! :S



 Carmen Iriarte
  Want a signature like mine?
 http://s.wisestamp.com/links?url=http%3A%2F%2Fr1.wisestamp.com%2Fr%2Flanding%3Fpromo%3D22%26dest%3Dhttp%253A%252F%252Fwww.wisestamp.com%252Femail-install%253Futm_source%253Dextension%2526utm_medium%253Demail%2526utm_campaign%253Dpromo_22
  Click
 here.http://s.wisestamp.com/links?url=http%3A%2F%2Fr1.wisestamp.com%2Fr%2Flanding%3Fpromo%3D22%26dest%3Dhttp%253A%252F%252Fwww.wisestamp.com%252Femail-install%253Futm_source%253Dextension%2526utm_medium%253Demail%2526utm_campaign%253Dpromo_22


 Carmen Iriarte
 Our mind is the most powerful tool we have. Nurture it!
 See my vizify bio! https://www.vizify.com/es/521595973f9ead000820





 On Thu, Feb 20, 2014 at 12:57 PM, Andrew Scott andr...@andyscott.id.auwrote:


 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.comwrote:

 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 Iriarte
  Want a signature like mine?
 http://s.wisestamp.com/links?url=http%3A%2F%2Fr1.wisestamp.com%2Fr%2Flanding%3Fpromo%3D22%26dest%3Dhttp%253A%252F%252Fwww.wisestamp.com%252Femail-install%253Futm_source%253Dextension%2526utm_medium%253Demail%2526utm_campaign%253Dpromo_22
  Click
 here.http://s.wisestamp.com/links?url=http%3A%2F%2Fr1.wisestamp.com%2Fr%2Flanding%3Fpromo%3D22%26dest%3Dhttp%253A%252F%252Fwww.wisestamp.com%252Femail-install%253Futm_source%253Dextension%2526utm_medium%253Demail%2526utm_campaign%253Dpromo_22


 Carmen Iriarte
 Our mind is the most powerful tool we have. Nurture it!
 See my vizify bio! https://www.vizify.com/es/521595973f9ead000820





 On Wed, Feb 19, 2014 at 8:40 AM, Andrew Scott 
 andr...@andyscott.id.auwrote:

 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 accessible via
 ColdFusion.

 The location that you move the file too, will be the location that will
 be used for your initial question.

 Regards,
 Andrew Scott
  WebSite: http://www.andyscott.id.au/
 Google+:  http://plus.google.com/113032480415921517411



 On Wed, Feb 19, 2014 at 5:34 PM, Carmen Iriarte iria...@gmail.comwrote:

 Hi there,

 I was looking for an answer for a problem I'm running with CFmail and
 I found this thread.

 I have a form that is requesting to submit a file, but when I call the
 file from CFMAIL I don't receive the entire logic path to the file, just
 the file name.
 Any idea how to get the entire path?

 I'm using this on the form to collect the file name:
 input type=file name=xrays id=xrays accept=image/jpeg

 And this with the CFMAIL..
 CFMAILPARAM file=#Form.xrays# disposition=attachment

 This is the error I'm receiving:
 The resource IMG_5868.JPG was not found.

 Any ideas?

 Thanks,

  --
 You received this message because you are subscribed to a topic in the
 Google Groups cfaussie group.
 To unsubscribe from this topic, visit
 https://groups.google.com/d/topic/cfaussie/7THS2h_j518/unsubscribe.
 To unsubscribe from this group and all its topics, send an email to
 cfaussie+unsubscr...@googlegroups.com.

 To post to this group, send email to cfaussie@googlegroups.com.
 Visit this group at http://groups.google.com/group/cfaussie.
 For more options, visit https://groups.google.com/groups/opt_out.


  --
 You received this message because you are subscribed to the Google
 Groups cfaussie group.
 To unsubscribe from this group and stop receiving emails from it, send
 an email to cfaussie+unsubscr...@googlegroups.com.

 To post to this group, send email to cfaussie@googlegroups.com.
 Visit this group at http://groups.google.com/group/cfaussie.
 For more options, visit https://groups.google.com/groups/opt_out.


  --
 You 

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 use ColdFusion cffile will result in hundreds of solutions
and blogs that will help.

Regards,
Andrew Scott
WebSite: http://www.andyscott.id.au/
Google+:  http://plus.google.com/113032480415921517411



On Sat, Mar 1, 2014 at 8:30 AM, Carmen Iriarte iria...@gmail.com wrote:

 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
 destination=#systempath#\wirelessortho\attachments\
 nameconflict=makeunique filefield=file1 accept=image/gif, image/jpeg,
 image/png

 Thanks for the help!

 Carmen Iriarte
 Our mind is the most powerful tool we have. Nurture it!
  See my vizify bio! https://www.vizify.com/es/521595973f9ead000820





 On Fri, Feb 21, 2014 at 7:08 PM, Carmen Iriarte iria...@gmail.com wrote:

 Awesome! Thanks Andrew... Let me check that! :S



 Carmen Iriarte
  Want a signature like mine?
 http://s.wisestamp.com/links?url=http%3A%2F%2Fr1.wisestamp.com%2Fr%2Flanding%3Fpromo%3D22%26dest%3Dhttp%253A%252F%252Fwww.wisestamp.com%252Femail-install%253Futm_source%253Dextension%2526utm_medium%253Demail%2526utm_campaign%253Dpromo_22
  Click
 here.http://s.wisestamp.com/links?url=http%3A%2F%2Fr1.wisestamp.com%2Fr%2Flanding%3Fpromo%3D22%26dest%3Dhttp%253A%252F%252Fwww.wisestamp.com%252Femail-install%253Futm_source%253Dextension%2526utm_medium%253Demail%2526utm_campaign%253Dpromo_22


 Carmen Iriarte
 Our mind is the most powerful tool we have. Nurture it!
 See my vizify bio! https://www.vizify.com/es/521595973f9ead000820





 On Thu, Feb 20, 2014 at 12:57 PM, Andrew Scott 
 andr...@andyscott.id.auwrote:


 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.comwrote:

 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 Iriarte
  Want a signature like mine?
 http://s.wisestamp.com/links?url=http%3A%2F%2Fr1.wisestamp.com%2Fr%2Flanding%3Fpromo%3D22%26dest%3Dhttp%253A%252F%252Fwww.wisestamp.com%252Femail-install%253Futm_source%253Dextension%2526utm_medium%253Demail%2526utm_campaign%253Dpromo_22
  Click
 here.http://s.wisestamp.com/links?url=http%3A%2F%2Fr1.wisestamp.com%2Fr%2Flanding%3Fpromo%3D22%26dest%3Dhttp%253A%252F%252Fwww.wisestamp.com%252Femail-install%253Futm_source%253Dextension%2526utm_medium%253Demail%2526utm_campaign%253Dpromo_22


 Carmen Iriarte
 Our mind is the most powerful tool we have. Nurture it!
 See my vizify bio! https://www.vizify.com/es/521595973f9ead000820





 On Wed, Feb 19, 2014 at 8:40 AM, Andrew Scott 
 andr...@andyscott.id.auwrote:

 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
 accessible via ColdFusion.

 The location that you move the file too, will be the location that
 will be used for your initial question.

 Regards,
 Andrew Scott
  WebSite: http://www.andyscott.id.au/
 Google+:  http://plus.google.com/113032480415921517411



 On Wed, Feb 19, 2014 at 5:34 PM, Carmen Iriarte iria...@gmail.comwrote:

 Hi there,

 I was looking for an answer for a problem I'm running with CFmail and
 I found this thread.

 I have a form that is requesting to submit a file, but when I call
 the file from CFMAIL I don't receive the entire logic path to the file,
 just the file name.
 Any idea how to get the entire path?

 I'm using this on the form to collect the file name:
 input type=file name=xrays id=xrays accept=image/jpeg

 And this with the CFMAIL..
 CFMAILPARAM file=#Form.xrays# disposition=attachment

 This is the error I'm receiving:
 The resource IMG_5868.JPG was not found.

 Any ideas?

 Thanks,

  --
 You received this message because you are subscribed to a topic in the
 Google Groups cfaussie group.
 To unsubscribe from this topic, visit
 https://groups.google.com/d/topic/cfaussie/7THS2h_j518/unsubscribe.
 To unsubscribe from this group and all its topics, send an email to
 cfaussie+unsubscr...@googlegroups.com.

 To post to this group, send 

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?
http://s.wisestamp.com/links?url=http%3A%2F%2Fr1.wisestamp.com%2Fr%2Flanding%3Fpromo%3D22%26dest%3Dhttp%253A%252F%252Fwww.wisestamp.com%252Femail-install%253Futm_source%253Dextension%2526utm_medium%253Demail%2526utm_campaign%253Dpromo_22
Click
here.http://s.wisestamp.com/links?url=http%3A%2F%2Fr1.wisestamp.com%2Fr%2Flanding%3Fpromo%3D22%26dest%3Dhttp%253A%252F%252Fwww.wisestamp.com%252Femail-install%253Futm_source%253Dextension%2526utm_medium%253Demail%2526utm_campaign%253Dpromo_22


Carmen Iriarte
Our mind is the most powerful tool we have. Nurture it!
See my vizify bio! https://www.vizify.com/es/521595973f9ead000820





On Thu, Feb 20, 2014 at 12:57 PM, Andrew Scott andr...@andyscott.id.auwrote:


 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 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 Iriarte
  Want a signature like mine?
 http://s.wisestamp.com/links?url=http%3A%2F%2Fr1.wisestamp.com%2Fr%2Flanding%3Fpromo%3D22%26dest%3Dhttp%253A%252F%252Fwww.wisestamp.com%252Femail-install%253Futm_source%253Dextension%2526utm_medium%253Demail%2526utm_campaign%253Dpromo_22
  Click
 here.http://s.wisestamp.com/links?url=http%3A%2F%2Fr1.wisestamp.com%2Fr%2Flanding%3Fpromo%3D22%26dest%3Dhttp%253A%252F%252Fwww.wisestamp.com%252Femail-install%253Futm_source%253Dextension%2526utm_medium%253Demail%2526utm_campaign%253Dpromo_22


 Carmen Iriarte
 Our mind is the most powerful tool we have. Nurture it!
 See my vizify bio! https://www.vizify.com/es/521595973f9ead000820





 On Wed, Feb 19, 2014 at 8:40 AM, Andrew Scott andr...@andyscott.id.auwrote:

 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 accessible via
 ColdFusion.

 The location that you move the file too, will be the location that will
 be used for your initial question.

 Regards,
 Andrew Scott
  WebSite: http://www.andyscott.id.au/
 Google+:  http://plus.google.com/113032480415921517411



 On Wed, Feb 19, 2014 at 5:34 PM, Carmen Iriarte iria...@gmail.comwrote:

 Hi there,

 I was looking for an answer for a problem I'm running with CFmail and I
 found this thread.

 I have a form that is requesting to submit a file, but when I call the
 file from CFMAIL I don't receive the entire logic path to the file, just
 the file name.
 Any idea how to get the entire path?

 I'm using this on the form to collect the file name:
 input type=file name=xrays id=xrays accept=image/jpeg

 And this with the CFMAIL..
 CFMAILPARAM file=#Form.xrays# disposition=attachment

 This is the error I'm receiving:
 The resource IMG_5868.JPG was not found.

 Any ideas?

 Thanks,

  --
 You received this message because you are subscribed to a topic in the
 Google Groups cfaussie group.
 To unsubscribe from this topic, visit
 https://groups.google.com/d/topic/cfaussie/7THS2h_j518/unsubscribe.
 To unsubscribe from this group and all its topics, send an email to
 cfaussie+unsubscr...@googlegroups.com.

 To post to this group, send email to cfaussie@googlegroups.com.
 Visit this group at http://groups.google.com/group/cfaussie.
 For more options, visit https://groups.google.com/groups/opt_out.


  --
 You received this message because you are subscribed to the Google Groups
 cfaussie group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to cfaussie+unsubscr...@googlegroups.com.

 To post to this group, send email to cfaussie@googlegroups.com.
 Visit this group at http://groups.google.com/group/cfaussie.
 For more options, visit https://groups.google.com/groups/opt_out.


  --
 You received this message because you are subscribed to a topic in the
 Google Groups cfaussie group.
 To unsubscribe from this topic, visit
 https://groups.google.com/d/topic/cfaussie/7THS2h_j518/unsubscribe.
 To unsubscribe from this group and all its topics, send an email to
 cfaussie+unsubscr...@googlegroups.com.
 To post to this group, send email to cfaussie@googlegroups.com.
 Visit this group at http://groups.google.com/group/cfaussie.
 For more options, visit https://groups.google.com/groups/opt_out.


-- 
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To unsubscribe from this group and stop 

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 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 Iriarte
  Want a signature like mine?
 http://s.wisestamp.com/links?url=http%3A%2F%2Fr1.wisestamp.com%2Fr%2Flanding%3Fpromo%3D22%26dest%3Dhttp%253A%252F%252Fwww.wisestamp.com%252Femail-install%253Futm_source%253Dextension%2526utm_medium%253Demail%2526utm_campaign%253Dpromo_22
  Click
 here.http://s.wisestamp.com/links?url=http%3A%2F%2Fr1.wisestamp.com%2Fr%2Flanding%3Fpromo%3D22%26dest%3Dhttp%253A%252F%252Fwww.wisestamp.com%252Femail-install%253Futm_source%253Dextension%2526utm_medium%253Demail%2526utm_campaign%253Dpromo_22


 Carmen Iriarte
 Our mind is the most powerful tool we have. Nurture it!
 See my vizify bio! https://www.vizify.com/es/521595973f9ead000820





 On Wed, Feb 19, 2014 at 8:40 AM, Andrew Scott andr...@andyscott.id.auwrote:

 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 accessible via
 ColdFusion.

 The location that you move the file too, will be the location that will
 be used for your initial question.

 Regards,
 Andrew Scott
  WebSite: http://www.andyscott.id.au/
 Google+:  http://plus.google.com/113032480415921517411



 On Wed, Feb 19, 2014 at 5:34 PM, Carmen Iriarte iria...@gmail.comwrote:

 Hi there,

 I was looking for an answer for a problem I'm running with CFmail and I
 found this thread.

 I have a form that is requesting to submit a file, but when I call the
 file from CFMAIL I don't receive the entire logic path to the file, just
 the file name.
 Any idea how to get the entire path?

 I'm using this on the form to collect the file name:
 input type=file name=xrays id=xrays accept=image/jpeg

 And this with the CFMAIL..
 CFMAILPARAM file=#Form.xrays# disposition=attachment

 This is the error I'm receiving:
 The resource IMG_5868.JPG was not found.

 Any ideas?

 Thanks,

  --
 You received this message because you are subscribed to a topic in the
 Google Groups cfaussie group.
 To unsubscribe from this topic, visit
 https://groups.google.com/d/topic/cfaussie/7THS2h_j518/unsubscribe.
 To unsubscribe from this group and all its topics, send an email to
 cfaussie+unsubscr...@googlegroups.com.

 To post to this group, send email to cfaussie@googlegroups.com.
 Visit this group at http://groups.google.com/group/cfaussie.
 For more options, visit https://groups.google.com/groups/opt_out.


  --
 You received this message because you are subscribed to the Google Groups
 cfaussie group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to cfaussie+unsubscr...@googlegroups.com.
 To post to this group, send email to cfaussie@googlegroups.com.
 Visit this group at http://groups.google.com/group/cfaussie.
 For more options, visit https://groups.google.com/groups/opt_out.


-- 
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cfaussie+unsubscr...@googlegroups.com.
To post to this group, send email to cfaussie@googlegroups.com.
Visit this group at http://groups.google.com/group/cfaussie.
For more options, visit https://groups.google.com/groups/opt_out.


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 accessible via
ColdFusion.

The location that you move the file too, will be the location that will be
used for your initial question.

Regards,
Andrew Scott
WebSite: http://www.andyscott.id.au/
Google+:  http://plus.google.com/113032480415921517411



On Wed, Feb 19, 2014 at 5:34 PM, Carmen Iriarte iria...@gmail.com wrote:

 Hi there,

 I was looking for an answer for a problem I'm running with CFmail and I
 found this thread.

 I have a form that is requesting to submit a file, but when I call the
 file from CFMAIL I don't receive the entire logic path to the file, just
 the file name.
 Any idea how to get the entire path?

 I'm using this on the form to collect the file name:
 input type=file name=xrays id=xrays accept=image/jpeg

 And this with the CFMAIL..
 CFMAILPARAM file=#Form.xrays# disposition=attachment

 This is the error I'm receiving:
 The resource IMG_5868.JPG was not found.

 Any ideas?

 Thanks,



-- 
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cfaussie+unsubscr...@googlegroups.com.
To post to this group, send email to cfaussie@googlegroups.com.
Visit this group at http://groups.google.com/group/cfaussie.
For more options, visit https://groups.google.com/groups/opt_out.


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 Iriarte
 Want a signature like mine?
http://s.wisestamp.com/links?url=http%3A%2F%2Fr1.wisestamp.com%2Fr%2Flanding%3Fpromo%3D22%26dest%3Dhttp%253A%252F%252Fwww.wisestamp.com%252Femail-install%253Futm_source%253Dextension%2526utm_medium%253Demail%2526utm_campaign%253Dpromo_22
Click
here.http://s.wisestamp.com/links?url=http%3A%2F%2Fr1.wisestamp.com%2Fr%2Flanding%3Fpromo%3D22%26dest%3Dhttp%253A%252F%252Fwww.wisestamp.com%252Femail-install%253Futm_source%253Dextension%2526utm_medium%253Demail%2526utm_campaign%253Dpromo_22


Carmen Iriarte
Our mind is the most powerful tool we have. Nurture it!
See my vizify bio! https://www.vizify.com/es/521595973f9ead000820





On Wed, Feb 19, 2014 at 8:40 AM, Andrew Scott andr...@andyscott.id.auwrote:

 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 accessible via
 ColdFusion.

 The location that you move the file too, will be the location that will be
 used for your initial question.

 Regards,
 Andrew Scott
  WebSite: http://www.andyscott.id.au/
 Google+:  http://plus.google.com/113032480415921517411



 On Wed, Feb 19, 2014 at 5:34 PM, Carmen Iriarte iria...@gmail.com wrote:

 Hi there,

 I was looking for an answer for a problem I'm running with CFmail and I
 found this thread.

 I have a form that is requesting to submit a file, but when I call the
 file from CFMAIL I don't receive the entire logic path to the file, just
 the file name.
 Any idea how to get the entire path?

 I'm using this on the form to collect the file name:
 input type=file name=xrays id=xrays accept=image/jpeg

 And this with the CFMAIL..
 CFMAILPARAM file=#Form.xrays# disposition=attachment

 This is the error I'm receiving:
 The resource IMG_5868.JPG was not found.

 Any ideas?

 Thanks,

  --
 You received this message because you are subscribed to a topic in the
 Google Groups cfaussie group.
 To unsubscribe from this topic, visit
 https://groups.google.com/d/topic/cfaussie/7THS2h_j518/unsubscribe.
 To unsubscribe from this group and all its topics, send an email to
 cfaussie+unsubscr...@googlegroups.com.
 To post to this group, send email to cfaussie@googlegroups.com.
 Visit this group at http://groups.google.com/group/cfaussie.
 For more options, visit https://groups.google.com/groups/opt_out.


-- 
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cfaussie+unsubscr...@googlegroups.com.
To post to this group, send email to cfaussie@googlegroups.com.
Visit this group at http://groups.google.com/group/cfaussie.
For more options, visit https://groups.google.com/groups/opt_out.


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

2014-02-18 Thread Carmen Iriarte
Hi there,

I was looking for an answer for a problem I'm running with CFmail and I 
found this thread.

I have a form that is requesting to submit a file, but when I call the file 
from CFMAIL I don't receive the entire logic path to the file, just the 
file name.
Any idea how to get the entire path?

I'm using this on the form to collect the file name: 
input type=file name=xrays id=xrays accept=image/jpeg

And this with the CFMAIL.. 
CFMAILPARAM file=#Form.xrays# disposition=attachment

This is the error I'm receiving:
The resource IMG_5868.JPG was not found. 

Any ideas?

Thanks,


On Wednesday, January 23, 2008 9:10:22 PM UTC-8, and...@andyscott.id.au 
wrote:

 Hmm, I would perhaps class that as a bug in CF. One should not have to do
 that:-)


 Andrew Scott
 Senior Coldfusion Developer
 Aegeon Pty. Ltd.
 www.aegeon.com.au
 Phone: +613  9015 8628
 Mobile: 0404 998 273

 -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... 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 clear linebreaks from both the
 rest of the body of text, AND other cfmailparam tags.

 Hope this helps someone.

 Cheers,
 Chong


 On Jan 24, 2:23 pm, KC Kuok kck...@gmail.com wrote:
  Hi all,
 
  I am having a little trouble generating mail with multiple
  attachments, they seem to be rejected then placed into Undeliverables
  folder. I have checked the path and it looks correct, and I am out of
  ideas. The server is a up-to-date CF 7 standard server.
 
  *Note: I know i am sending only one file, but the main issue is that
  cfmailparam doesn't seem to work when attaching attachments. I have
  tested using mimeattach and it works. The server will spool and send
  emails without attachment and emails with attachment declared in
  mimeattach in the CFMAIL tag.
 
  I have also refered to a few sites and i do not see the difference
  between their code and mine below, so fresh eyes and help is much
  appreciated.
 
  Thanks,
  Chong
 
  This is what is in the Undeliverables folder...
 
  server:  ...:25
  from:  ...
  to:  ...
  cc:  ...
  subject:  ...
  type:  text/html; charset=UTF-8
  X-Mailer:  ColdFusion MX Application Server
  body:  ...
  file:  d:\sites\mymlc\wwwroot\...\test1.txt
  file-type:  text/plain; name=test1.txt
  file-disposition:  attachment
 
  This is roughly what I use to generate the mail
 
  cfmail ...
  ...cfmailparam file=#attachments[1].attachedfile#
  disposition=attachment
  /cfmail



-- 
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cfaussie+unsubscr...@googlegroups.com.
To post to this group, send email to cfaussie@googlegroups.com.
Visit this group at http://groups.google.com/group/cfaussie.
For more options, visit https://groups.google.com/groups/opt_out.


[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: Thursday, 24 January 2008 2:23 PM
To: cfaussie
Subject: [cfaussie] Help with CFmail sending multiple attachments


Hi all,

I am having a little trouble generating mail with multiple
attachments, they seem to be rejected then placed into Undeliverables
folder. I have checked the path and it looks correct, and I am out of
ideas. The server is a up-to-date CF 7 standard server.

*Note: I know i am sending only one file, but the main issue is that
cfmailparam doesn't seem to work when attaching attachments. I have
tested using mimeattach and it works. The server will spool and send
emails without attachment and emails with attachment declared in
mimeattach in the CFMAIL tag.

I have also refered to a few sites and i do not see the difference
between their code and mine below, so fresh eyes and help is much
appreciated.

Thanks,
Chong

This is what is in the Undeliverables folder...

server:  ...:25
from:  ...
to:  ...
cc:  ...
subject:  ...
type:  text/html; charset=UTF-8
X-Mailer:  ColdFusion MX Application Server
body:  ...
file:  d:\sites\mymlc\wwwroot\...\test1.txt
file-type:  text/plain; name=test1.txt
file-disposition:  attachment


This is roughly what I use to generate the mail

cfmail ...
...cfmailparam file=#attachments[1].attachedfile#
disposition=attachment
/cfmail


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[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 clear linebreaks from both the
rest of the body of text, AND other cfmailparam tags.

Hope this helps someone.

Cheers,
Chong


On Jan 24, 2:23 pm, KC Kuok [EMAIL PROTECTED] wrote:
 Hi all,

 I am having a little trouble generating mail with multiple
 attachments, they seem to be rejected then placed into Undeliverables
 folder. I have checked the path and it looks correct, and I am out of
 ideas. The server is a up-to-date CF 7 standard server.

 *Note: I know i am sending only one file, but the main issue is that
 cfmailparam doesn't seem to work when attaching attachments. I have
 tested using mimeattach and it works. The server will spool and send
 emails without attachment and emails with attachment declared in
 mimeattach in the CFMAIL tag.

 I have also refered to a few sites and i do not see the difference
 between their code and mine below, so fresh eyes and help is much
 appreciated.

 Thanks,
 Chong

 This is what is in the Undeliverables folder...

 server:  ...:25
 from:  ...
 to:  ...
 cc:  ...
 subject:  ...
 type:  text/html; charset=UTF-8
 X-Mailer:  ColdFusion MX Application Server
 body:  ...
 file:  d:\sites\mymlc\wwwroot\...\test1.txt
 file-type:  text/plain; name=test1.txt
 file-disposition:  attachment

 This is roughly what I use to generate the mail

 cfmail ...
 ...cfmailparam file=#attachments[1].attachedfile#
 disposition=attachment
 /cfmail
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: Help with CFmail sending multiple attachments

2008-01-23 Thread Andrew Scott

Hmm, I would perhaps class that as a bug in CF. One should not have to do
that:-)


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: 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

This would not work properly
CFLOOP
cfmailparam
/CFLOOP

but this did...

CFLOOP

cfmailparam
/CFLOOP

So it seems cfmailparam needs extremely clear linebreaks from both the
rest of the body of text, AND other cfmailparam tags.

Hope this helps someone.

Cheers,
Chong


On Jan 24, 2:23 pm, KC Kuok [EMAIL PROTECTED] wrote:
 Hi all,

 I am having a little trouble generating mail with multiple
 attachments, they seem to be rejected then placed into Undeliverables
 folder. I have checked the path and it looks correct, and I am out of
 ideas. The server is a up-to-date CF 7 standard server.

 *Note: I know i am sending only one file, but the main issue is that
 cfmailparam doesn't seem to work when attaching attachments. I have
 tested using mimeattach and it works. The server will spool and send
 emails without attachment and emails with attachment declared in
 mimeattach in the CFMAIL tag.

 I have also refered to a few sites and i do not see the difference
 between their code and mine below, so fresh eyes and help is much
 appreciated.

 Thanks,
 Chong

 This is what is in the Undeliverables folder...

 server:  ...:25
 from:  ...
 to:  ...
 cc:  ...
 subject:  ...
 type:  text/html; charset=UTF-8
 X-Mailer:  ColdFusion MX Application Server
 body:  ...
 file:  d:\sites\mymlc\wwwroot\...\test1.txt
 file-type:  text/plain; name=test1.txt
 file-disposition:  attachment

 This is roughly what I use to generate the mail

 cfmail ...
 ...cfmailparam file=#attachments[1].attachedfile#
 disposition=attachment
 /cfmail


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---