Batching emails :: aspEmail vs CDO :; sendQueue stability?

Ask a Question related to ASP, Design and Development.

  1. #1

    Default Batching emails :: aspEmail vs CDO :; sendQueue stability?

    Database: Access 2000
    Host: Maximum ASP

    I am trying to work out the best way to send bulk email below the 1000 mark
    (about 800).

    I understand that I could either use ASPEmail or CDO although I believe that
    ASPEmail may be superior in that it offers SENDQUEUE command which will
    allow me to loop through my customer database and insert them into the TO
    fields.

    1. Could the above be confirmed?
    2. I wish my mailing list to be invisible - I don't want the mailing list to
    be evident in the recipients email...is this just a question of looping them
    into the BCC field?
    3. I remember seeing some posts a while ago highlighting problems with the
    SendQueue Method.... what are the curve balls with this approach.

    My web host tells me I can send upto a 1000 per day yet [url]www.aspfaq.com[/url] says
    about 800. How do I tackle this task correclty. I cannot move up to SQL
    Server or MSDE yet and I do not have access to a mail server...

    Many thanks
    Jason


    jason Guest

  2. Similar Questions and Discussions

    1. Batching files in 5.0
      Using Acrobat 5.0 Mac, how can we batch and lock pdf files? We had this functionality using 4.0. Thanks.
    2. Help with Batching - Ai10
      Hi guys, I have a few questions. I have an action that opens a file and performs a series of stuff on them and ends with a save for web. I want...
    3. ASP & AspEmail
      Hi! I have created an ASP page that calls a webservice using an XSL page. The data is displayed correctly in the table. I added a submit button....
    4. Files renamed when batching
      Save the Script. Edit it Look for the following lines in the DoExport and DoForceExport functions and change as necessary, taking into...
    5. AspEmail vs CDO :: (sendque) which is better?
      If you are sending out bulk emails in the range of 800 to 1000 per day which component is better: 1. ASPEmail 2. CDO ....and further, do they...
  3. #2

    Default Re: Batching emails :: aspEmail vs CDO :; sendQueue stability?


    Thanks for feedback...

    > Does your host have the SendToQueue option installed? You need to check
    > that first.

    Yes, this has been confirmed for ASPEMAIL, although I still need to find out
    if CDO offers this too and whether this would be better? Which wins -
    aspemail or cdo? I normally use Cdo but I'm prepared to go for aspmail to
    get job done.

    > Here's what I would do for BCC, this way the recipients do not see
    > eachother. Just make sure that the AddAddress is a valid address in your
    > organization:
    This is don't understand. What do you mean by AddAddress must be valid to
    your organization...could you elaborate?
    > Mail.AddAddress "mailinglist@example.com", "Example Mailing List"
    > Mail.AddBcc MailingRs("email") MailingRs("recipient_name")
    >
    > Mail.Subject "Here is a great subject"
    > Mail.Body "Here is the body of the message"
    > Mail.SendToQueue
    Wow, is it really as easy as this.....is there any other constraints you
    need to place on the script....I mean, how do you know:

    - If the script executes correctly -
    - What errors are normally thrown up if the recipients address is invalid or
    their inbox is full...what are best practices?
    - How long will it take to send out eg: 800 emails
    - Is there any further steps I need to do to break up the emails?

    - Jason
    > --
    > Adrienne Boswell
    > Please respond to the group so others can share
    > [url]http://www.arbpen.com[/url]

    jason Guest

  4. #3

    Default Re: Batching emails :: aspEmail vs CDO :; sendQueue stability?

    Gazing into my crystal ball I observed "jason" <jason@catamaranco.com>
    writing in news:ur645mnZDHA.2464@TK2MSFTNGP09.phx.gbl:
    >
    > Thanks for feedback...
    >
    >
    >> Does your host have the SendToQueue option installed? You need to
    >> check that first.
    >
    >
    > Yes, this has been confirmed for ASPEMAIL, although I still need to
    > find out if CDO offers this too and whether this would be better? Which
    > wins - aspemail or cdo? I normally use Cdo but I'm prepared to go for
    > aspmail to get job done.
    >
    >
    >> Here's what I would do for BCC, this way the recipients do not see
    >> eachother. Just make sure that the AddAddress is a valid address in
    >> your organization:
    >
    > This is don't understand. What do you mean by AddAddress must be valid
    > to your organization...could you elaborate?
    When I send a bunch of BCC messages, instead of having the To: address one
    of the recipients, I usually use myself. The old Netscape mail client was
    able to send BCC without a To address. I don't know if Aspemail is able to
    do this or not, therefore the suggestion that you use a valid email address
    in your organization. Mail.Address is Aspemail's version of To:
    >
    >> Mail.AddAddress "mailinglist@example.com", "Example Mailing List"
    >> Mail.AddBcc MailingRs("email") MailingRs("recipient_name")
    >>
    >> Mail.Subject "Here is a great subject"
    >> Mail.Body "Here is the body of the message"
    >> Mail.SendToQueue
    >
    > Wow, is it really as easy as this.....is there any other constraints
    > you need to place on the script....I mean, how do you know:
    >
    > - If the script executes correctly -
    If Err <> 0 Then
    Response.Write "An error occurred: " & Err.Description
    End If
    > - What errors are normally thrown up if the recipients address is
    > invalid or their inbox is full...what are best practices?
    You'll get returned mail from the recipients mail server. It goes without
    saying that you need to clean your list of undeliverables. You might want
    to think about making another table that has Inbox Full, or Vacation
    responses, as those are probably good addresses and could be tried on
    another mailing.
    > - How long will it take to send out eg: 800 emails
    It depends on what the server is doing, if it has tasks to complete, etc.
    If I were you, I would try to send the mail in the evening.
    > - Is there any further steps I need to do to break up the emails?
    Check your spelling, punctuation and grammar. I'm serious when I say this,
    because there is nothing more unprofessional looking than misspellings and
    bad grammar. Send a message to someone you know, and ask them to proofread
    it before you send it out to your mailinglist.

    --
    Adrienne Boswell
    Please respond to the group so others can share
    [url]http://www.arbpen.com[/url]
    Adrienne 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