Ask a Question related to ASP, Design and Development.
-
jason #1
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
-
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. -
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... -
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.... -
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... -
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... -
jason #2
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.
This is don't understand. What do you mean by AddAddress must be valid to> 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:
your organization...could you elaborate?
Wow, is it really as easy as this.....is there any other constraints you> 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
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
-
Adrienne #3
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:
When I send a bunch of BCC messages, instead of having the To: address one>
> 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?
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:
If Err <> 0 Then>>>> 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 -
Response.Write "An error occurred: " & Err.Description
End If
You'll get returned mail from the recipients mail server. It goes without> - What errors are normally thrown up if the recipients address is
> invalid or their inbox is full...what are best practices?
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.
It depends on what the server is doing, if it has tasks to complete, etc.> - How long will it take to send out eg: 800 emails
If I were you, I would try to send the mail in the evening.
Check your spelling, punctuation and grammar. I'm serious when I say this,> - Is there any further steps I need to do to break up the emails?
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



Reply With Quote

