Reply
 
Thread Tools Display Modes
  #1   Report Post  
Posted to microsoft.public.word.mailmerge.fields
Sooz Sooz is offline
external usenet poster
 
Posts: 2
Default How do I get read & delivery receipts for an Email merge?

I have created a Word (2003) document and sent it via Outlook (2003) using
the mail merge function. The emails were sent successfully as far as I know,
however, to be sure they were sent and read, I checked the boxes for read and
delivery receipt in the Tools/Option within my email document . I did not
receive any delivery or read receipts. Is there something else I should do?
  #2   Report Post  
Posted to microsoft.public.word.mailmerge.fields
Peter Jamieson Peter Jamieson is offline
external usenet poster
 
Posts: 4,582
Default How do I get read & delivery receipts for an Email merge?

If you started with an "email document", I do not think Word will honour
any of the e-mail related settings in that document - it probably only
looks at the ones you set in the dialog that starts the merge to email.

So...

One way you could approach this (I haven't tested the code here):

Set all the read/delivery receipts in Outlook, e.g.
a. before the merge, ensure your Outlook Outbox is empty, then stop
Outlook from sending. Leave Outlook open
b. do the merge
c. run the following macro. It should work from both Outlook and Word,
but in Word you will need to ensure that there is a reference to the
Microsoft Office xx.0 Outlook Library (with the VBA macro open in the
VBE Editor, use Tools|References to check the appropriate version of the
library).

Sub MarkAllInOutbox()

Dim objOutlook As Outlook.Application
Dim objNameSpace As Outlook.NameSpace
Dim objFolder As Outlook.Folder
Dim objMailItem As Outlook.MailItem
Set objOutlook = GetObject(, "Outlook.Application")
Set objNameSpace = objOutlook.GetNamespace("MAPI")
Set objFolder = objNameSpace.GetDefaultFolder(olFolderOutbox)
For Each objMailItem In objFolder.Items
objMailItem.ReadReceiptRequested = True
objMailItem.OriginatorDeliveryReportRequested = True
objMailItem.Save
objMailItem.Send
Next
Set objFolder = Nothing
Set objNameSpace = Nothing
Set objOutlook = Nothing
End Sub

d. Start Outlook sending again.

There is another possible approach that does one merge for each email,
but it would be handy to know whether you are sending as plain text,
HTML or attachment - and it may have problems with Outlook security prompts.


Peter Jamieson

http://tips.pjmsn.me.uk

Sooz wrote:
I have created a Word (2003) document and sent it via Outlook (2003) using
the mail merge function. The emails were sent successfully as far as I know,
however, to be sure they were sent and read, I checked the boxes for read and
delivery receipt in the Tools/Option within my email document . I did not
receive any delivery or read receipts. Is there something else I should do?

  #3   Report Post  
Posted to microsoft.public.word.mailmerge.fields
Rich/rerat Rich/rerat is offline
external usenet poster
 
Posts: 93
Default How do I get read & delivery receipts for an Email merge?

Sooz,
Remember that many individuals have their mail application set to not accept
"Read Receipt" requests, in addition, some ISP/Mail services also block
these requests. So the only thing that you can do, is to put in the body of
the letter/message, a request to send a reply, notifying you that they have
received and read your letter/message.


--
Add MS to your News Reader: news://msnews.microsoft.com
Rich/rerat
(RRR News) message rule
Previous Text Snipped to Save Bandwidth When Appropriate


"Sooz" wrote in message
news I have created a Word (2003) document and sent it via Outlook (2003) using
the mail merge function. The emails were sent successfully as far as I
know,
however, to be sure they were sent and read, I checked the boxes for read
and
delivery receipt in the Tools/Option within my email document . I did not
receive any delivery or read receipts. Is there something else I should do?


  #4   Report Post  
Posted to microsoft.public.word.mailmerge.fields
Doug Robbins - Word MVP Doug Robbins - Word MVP is offline
external usenet poster
 
Posts: 8,832
Default How do I get read & delivery receipts for an Email merge?

You can use a modification of the method in the article "Mail Merge to
E-mail with Attachments" at

http://word.mvps.org/FAQs/MailMerge/...ttachments.htm


--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP, originally posted via msnews.microsoft.com
"Sooz" wrote in message
news
I have created a Word (2003) document and sent it via Outlook (2003) using
the mail merge function. The emails were sent successfully as far as I
know,
however, to be sure they were sent and read, I checked the boxes for read
and
delivery receipt in the Tools/Option within my email document . I did not
receive any delivery or read receipts. Is there something else I should
do?


Reply
Thread Tools
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Getting Read or Delivery Receipts When Merging from Word to Outloo Amy E. Baggott Mailmerge 1 October 23rd 08 05:47 PM
how do you schedule an email delivery at a later date in MSOutloo Mark Microsoft Word Help 2 November 30th 07 03:53 PM
how do I set an email for future delivery? moni Microsoft Word Help 2 June 1st 06 06:05 AM
Word 2000 - Mail Merge - Email Read Reciept Richard Microsoft Word Help 0 November 4th 05 06:30 AM
How do I schedule email delivery? Jessica Microsoft Word Help 2 July 19th 05 04:04 PM


All times are GMT +1. The time now is 07:18 AM.

Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 Microsoft Office Word Forum - WordBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Word"