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

  1. #1

    Default CFMAIL Send Limit?

    CFMAIL has been sending to only a partial list of recipients. I have tried two
    methods for sending mail, both using a function.

    In the first I looped through the list of recipients sending each a separate
    email.
    In the second method I placed all recipients in BCC, placing the sender's
    email in the FROM and TO field.

    I am sending to several batches of recipients. I have three recipient lists
    each totaling 38, 39 and 107. The under 40 lists appear to succeed just as well
    as smaller lists. The 107 only sends to part of the list. There are no apparent
    errors in CF admin or IIS SMTP. I have set IIS SMTP with no restrictions; it
    can send an unlimited number of messages per connection and to an unlimited
    number of recipients per message. All send tests with CF and other applications
    work in this environment except in this case.

    We staged some tests with the assistance of our network Admin using Domino's
    SMTP server. When we send to the 107 batch it showed only about forty messages
    arriving to the SMTP server. What happened to the rest?

    Short of breaking the list apart into segments smaller than 40, is there a
    setting in CF Admin or within the CFMAIL tag to overcome this restriction?

    I?m working with CF MX 6.1 Enterprise, Windows 2003, IIS 6 with SMTP.

    Thanks,

    :confused;


    bernarda Guest

  2. Similar Questions and Discussions

    1. Send data from a form through email without using CFMAIL
      Newbie question: I have this form that collects data from input boxes and would like to send that data to an email address. Is there a way to do...
    2. Is it possible to send encrypted cfmail?
      Hi, I'd be grateful if someone could please tell me whether it would be possible to send encrypted email using cfmail, and if yes, how can I do...
    3. <cfmail></cfmail> in a script
      I am wondering if I can put <cfmail> tags and code within a javascript script. will the browser recognize it, and perform the instructions? ...
    4. cfmail - Attribute validation error for tag CFMAIL.
      I'm getting the error ' Attribute validation error for tag CFMAIL.' on the code below. All its doing is outputting a text string to the TO: field. ...
    5. Using CFMail in Coldfusion 5.0 to send through a POP Server.
      How can you, in Coldfusion 5.0, send mail via <cfmail> through a POP3 server that requires a username and password. Those are not attributes in CF5...
  3. #2

    Default Re: CFMAIL Send Limit?

    On 2005-05-02 15:21:34 -0500, "bernarda" <barias@pmanet.org> said:
    > We staged some tests with the assistance of our network Admin using
    > Domino's SMTP server. When we send to the 107 batch it showed only
    > about forty messages arriving to the SMTP server. What happened to the
    > rest?
    >
    > Short of breaking the list apart into segments smaller than 40, is
    > there a setting in CF Admin or within the CFMAIL tag to overcome this
    > restriction?
    CF definitely doesn't have a restriction. We've used CF to send out
    batches of as many as 50,000 emails and it doesn't drop any of them.

    Several things you can investigate. First, check your mail logs and
    your undeliverable directory and see if there are any indications
    there. I haven't ever seen any emails from CF literally just
    disappear, so you should find some trace of them in the logs, in the
    undeliverable directory, in your CF mail queue, or possibly in your
    SMTP server's queue (although its sounds like you've looked there).

    Bear in mind that all CF really does is generates the mail and hands it
    off to the SMTP server, so once it successfully hits the SMTP server,
    as far as CF is concerned it's done its job. The task is to figure out
    from following the trail of emails where things are getting blocked,
    lost, or otherwise prevented from getting to the SMTP server.

    Matt

    --
    Matt Woodward
    [email]mpwoodward@gmail.com[/email]
    Team Macromedia - ColdFusion

    mpwoodward *TMM* Guest

  4. #3

    Default Re: CFMAIL Send Limit?

    We had the same problem Only a partial list was send
    it was couse by two problem we found :
    1: if the the to "" can not empty empty
    2: the email server could not keep up with coldfusion
    when i send otu small packet it would go very smooth
    we upgraded to a full time stand alone email server and we can sent about
    100k emails with not problems



    jorgepino 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