launch outlook with coldfusion PLEASE HELP

Ask a Question related to Macromedia ColdFusion, Design and Development.

  1. #1

    Default launch outlook with coldfusion PLEASE HELP

    Hi I need help; people here have been asking for this for a long time and I
    don't know what to do. We are running trial vers. of MX but I am trying to do
    this on the server that runs CF5. The purchase of MX might depend on this.

    Basically, we have a large client database. The clients are in groups. The
    staff here wants the ability in the coldfusion interface we built for them, to
    choose a group of people from the database and automatically populate an ms
    outlook message with their email addresses in the To: field. They do not want
    this functionality to run on the server (cfmail) as they want everything
    tracked in outlook.

    I tried to mailto:<cfloop> around the email addresses. This seemed to only
    work with small groups. Large groups it just hangs. Anyways, I need a
    methodology to deal with this request, and I need it as soon as you can reply :(

    I appreciate any help!!

    ~Wolfie

    wolf_lady Guest

  2. Similar Questions and Discussions

    1. Can coldfusion access Outlook email contacts?
      Hey can someone tell me how or if coldfusion can access outlook email contacts, i think it can be done using the COM objects but I am not sure, any...
    2. ColdFusion Administrator does not launch
      ColdFusion Administrator does not launch on a Windows 2003 server using IIS. Initially it worked. The only change on the server was adding a...
    3. Coldfusion 5 adminstration launch
      Hope somebody out there can help! I have just installed Coldfusion 5 (purchased a few years back) on my XP Home Edition service pack 2 PC. I am...
    4. ColdFusion will not launch after a win update
      Hi - if anyone has some insight on how to fix this it would be most appreciated. I can't figure out what to do to get it to launch. I've been...
    5. Outlook Contacts with coldfusion website
      I need show Ms outlook Contacts from a Central exchange server (not frem an outlook Client) in coldfusion website . Thanks
  3. #2

    Default Re: launch outlook with coldfusion PLEASE HELP

    I believe you're limited to the length of the MAILTO: address list (don't know
    what that limit is, tho). You might be able to do something like the following.

    Create groups in Outlook's address book that mirror the groups you want to
    send e-mail to.
    Add a field in your database to indicate what group a person is in.
    Use a MAILTO: tag to permit a user to selecct a group, rather than specific
    people.

    This approach keeps your MAILTO: list length short.

    Of course, if groups change frequently, this can become a maintenance headache.

    jdeline Guest

  4. #3

    Default Re: launch outlook with coldfusion PLEASE HELP

    Yes, unfortunately there are thousands of clients, the group memberships change daily, and that is exactly the kind of redundant effort we are trying to get rid of. Appreciate the response anyways :)
    wolf_lady Guest

  5. #4

    Default Re: launch outlook with coldfusion PLEASE HELP

    I believe you're limited to the length of the MAILTO: address list (don't know
    what that limit is, tho). You might be able to do something like the following.

    - Create groups in Outlook's address book that mirror the groups you want to
    send e-mail to.
    - Add a field in your database to indicate what group a person is in.
    - Use a MAILTO: tag to permit a user to selecct a group, rather than specific
    people.

    This approach keeps your MAILTO: list length short.

    Of course, if groups change frequently, this can become a maintenance headache.

    jdeline Guest

  6. #5

    Default Re: launch outlook with coldfusion PLEASE HELP

    Typically server side apps can not engage anything on the client side for
    security reasons. As such your options are extremely limited in what it is you
    can feed to the client side and I think you've already hit the wall on that
    score, so to speak. About the only thing you can do is create a series of
    links on a page (being mindful of the to: limit as set in RFC 2821 (I forget
    what it is now). Where you loop over a query of email addresses,
    listappend()ing as you go along until you max out the to: field, and then
    output the link and work on creating another.

    ugh! You gotta be desperate to do that!

    And I think that wall you hit is a lot thicker than you think. Lets say you
    do the above. If you try to send out mail with zillions of addresses in the
    to: field you'll look like a spammer to a lot of mail services, who suddenly
    see a boatload of mail coming from you, will kick in their frequency filters
    and torpedo your mail. I described the problem in
    [url]http://mysecretbase.com/slowing_down_cfmail.cfm[/url] and its only gotten worse since
    then.

    I'm thinking your job requirement needs to change, like it or not. CF can do
    this on its own quite well.

    Sorry for the downer,

    --Matt--
    MSB Web Systems... [url]http://mysecretbase.com[/url]
    I We humans are full of unpredictable emotions that logic cannot solve.
    - Kirk, "What Are Little Girls Made Of?" stardate 2712.4.






    MattRobertson Guest

  7. #6

    Default Re: launch outlook with coldfusion PLEASE HELP

    Thanks Matt; no bummer here; the biggest client group we send out to is 200 and
    they are paid members and want our emails! believe it or not. It seems to hang
    though when I loop on a group of folks over say 55; I'm not sure where the
    cutoff is. So when you say list append.. I guess I don't know how to do that.
    Do you mean open up more than one email message when it goes over the cutoff
    size? There 's an idea and yes I am desperate.

    Thanks a bunch

    wolf_lady 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