Link to home
Start Free TrialLog in
Avatar of Jegajothy vythilingam
Jegajothy vythilingamFlag for United States of America

asked on

Word 2007 - mail merge

My OS is win 7 prof 64 bit and I use office 2007.
i use Word's mail merge feature to email thru Outlook announcements and since it is a small amount of about 150 emails, thus my decision not to use vendors like iContacts, etc.
My first attempt hit a relay problem when the emails were sitting in my Outlook's Outbox not being sent even after 1 day.
To merge the email data, i run a simple query to extract the email field from the Access database.
To overcome this relay problem I am thinking of putting a sleep command, so that after sending each email, there will be a pause of say like 30 seconds before sending out the next email.  
If this can be done, can the Experts please advise, where and how should I insert the code.  Should i put it in the Word's merge document, or in the query in Access  or in Outlook.  
The code that I have which I am not sure whether will work or not is as follows :
Option Compare Database
Option Explicit
Private Declare Sub APISleep Lib "kernel32" Alias "Sleep" (ByVal lngMilliseconds As Long)

Public Function Sleep(lngSeconds As Long) As Boolean
  If lngSeconds > 0 Then
    Call APISleep(lngSeconds * 1000)

    Sleep = True
  End If

End Function

I will then call it with the syntax Sleep 20
Hope the experts can please  suggest a solution. Thank u.
Avatar of peter57r
peter57r
Flag of United Kingdom of Great Britain and Northern Ireland image

If you are using the built-in mail-merge then I don't see how it is possible to do what you ask.  The process is invisible. There is nowhere to add your own code.
Avatar of Jegajothy vythilingam

ASKER

in response to peter57r, is it possible to put at the query level at Access 2007/
If the query calls a function which includes a sleep process then you would get a delayed result, but I would expect the query result to be delayed totally and so nothing released to the mailmerge until the query was complete..  I can't be sure of this, so it might be worth a try.

If you build the sleep function into a standard module and ask for a parameter - which does not have to be used in the function- then you could call the function in the query using something like...
mywait:mysleepfunction(recordID)

you must use a field from the current record as a parameter otherwise Access will not call the function for each record, but just once before any records are processed.
in response to peter57r, i have the following function in my module in Access,
Option Explicit
Private Declare Sub APISleep Lib "kernel32" Alias "Sleep" (ByVal lngMilliseconds As Long)

Public Function Sleep(lngSeconds As Long) As Boolean
  If lngSeconds > 0 Then
    Call APISleep(lngSeconds * 1000)

    Sleep = True
  End If

End Function

What is the syntax to use to pass my database field, named ; Email
so that it will sleep for 20 seconds after processing each record.

My SQl statement for my query is ;
SELECT [Email] & " " & ";" AS E
FROM [Seniors Club]
WHERE ((([Email] & " " & ";") Is Not Null));

thank u.
ASKER CERTIFIED SOLUTION
Avatar of peter57r
peter57r
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
In response to peterS7r, i went to an existing  module and placed your function there, and then in the SQl of the query the syntax u gave.
but when i ran it I got the error undefined sleep function in expression.
Hope u do not mind giving me the steps where to stick this function.
I hit Create, then on Module, and i selected module1, and placed the code there and saved it and then went to the query and inserted the SQL statement.
Looks like I am doing something wrong as it does not seem to see the function.
In my above response, my apologies, I made a type in the word "Sleep' that is why i got that error.
But after correcting it, the error is now :
Wrong number of arguments used with function in query expression 'sleep(5,Email)'

and this is the SQl statement that I used :

SELECT [Email] & " " & ";" AS E, sleep(5,[Email]) AS mydummy
FROM [Seniors Club]
WHERE ((([Email] & " " & ";") Is Not Null));

Hope some sharp eyed Guru can spot the boo boo that i had made.
Thank u.
thank u