folder email attachment

Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.

  1. #1

    Default folder email attachment

    I am emailing an HTML report with chart images, there are 9 charts in the
    report. In the application the charts are created in a folder named 'charts',
    so in the HTML I have <img src="charts/chartname.jpg">. I cannot host the
    images from the server because they will only be there for a week and users
    will want to save the reports. I need to attach a folder with the charts
    inside, I cannot attach the entire folder because there are thousands of
    charts, I only need 9 in the attachment. The The HTML is cached because the
    same report is available in the web application and it is a long running
    report, so I dont want to rebuild it with the images at the root level, that is
    my last option.

    kyle969 Guest

  2. Similar Questions and Discussions

    1. Sending an Attachment in a EMAIL
      Hi, I am using a email form, where the user can send emails, everything is working fine, now i need to allow users to send attachments with their...
    2. sending as email attachment
      I'm new to Publisher so hope this isn't too simplistic but I can't seem to find answer to following. I'm intending to write a Newsletter in Publisher...
    3. email attachment...
      ....is this possible in PHP? and if so HoW? Reg Rads Carl : )#
    4. email attachment cannot be opened
      hi, I've made a form to send out emails with attachments, and the attachments look ok when they arrive but the content is somehow bad. I cannot...
    5. Email attachment
      Hello group, I've got a script here that sends emails with an attachment to an email address that is retrieved from an html form. The email...
  3. #2

    Default Re: folder email attachment

    I solved this by replacing the folder name in the content "content =
    Replace(content,'charts/','','ALL')" and attaching the files. They do not show
    up as attachments to the email.

    This does not work in Netscape, it does work in Outlook, not tested in Mozilla.

    kyle969 Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139