PC Review


Reply
Thread Tools Rate Thread

How do I reply to multiple messages with one mail?

 
 
=?Utf-8?B?cWxmd3l5ZA==?=
Guest
Posts: n/a
 
      30th Mar 2007
If I have to send a standard form letter to many applicants, in response to
their email is there a way to reply to many emails at once? Perhaps by adding
all respondents to the BCC list?


 
Reply With Quote
 
 
 
 
=?Utf-8?B?QWxpZ2F0b3I=?=
Guest
Posts: n/a
 
      30th Mar 2007
Yes you can manually put all receivers in the bcc line of your reply.
If you don't have all their addresses in an addressbook or if there are
really many , you could use a diffrent technique:

First put all the mails you want to respond to in an extra folder.
Then write the standard email you want to send them all.
Save the email. It will go to "Drafts" folder. Now drag that email to the
folder which contains all the emails you want to reply to.
Make sure the folder is opened and your answer mail is selected!!
Now press ALT+F11 and paste the macro at the end of the post.
Hit F5 and wait for some time. You will see how many replies Outlook sent.

Sub ReplytoALLEmail()
Dim compteur As Integer
Dim objFolder As Folder
Dim objTemplate As MailItem
Dim objItem As MailItem
Dim objReply As MailItem
Dim strEmail As String
Dim strEmails As String
Dim strBody As String
Dim strSubject As String
Set objTemplate = Application.ActiveExplorer.Selection.Item(1)
Set objFolder = objTemplate.Parent
compteur = 0
strBody = objTemplate.Body
strSubject = objTemplate.Subject
For Each objItem In objFolder.Items
If Not (objTemplate = objItem) Then
strEmail = objItem.SenderEmailAddress
Set objReply = objItem.Reply()
objReply.Body = strBody
objReply.Subject = strSubject
On Local Error Resume Next
objReply.Send
compteur = compteur + 1
End If
Next
MsgBox " Operation Successfull! " & vbCrLf & vbCrLf & "
Sent " & compteur & " Replies "
End Sub


--
I am what I am - the cow don''t make ham...


"qlfwyyd" wrote:

> If I have to send a standard form letter to many applicants, in response to
> their email is there a way to reply to many emails at once? Perhaps by adding
> all respondents to the BCC list?
>
>

 
Reply With Quote
 
=?Utf-8?B?cWxmd3l5ZA==?=
Guest
Posts: n/a
 
      2nd Apr 2007
It's good to know there is a way to do it through Outlook, but I think the
way I use already is probably easier. I just export all the emails I want to
use into Excel, copy the email addresses and paste them into the BCC line.
Faster than manually copying addresses from individual emails.

This really should be an option built-in to Outlook though - "Reply to Many"
or something. When sending confirmation responses this is an essential tool
for most offices.

"Aligator" wrote:

> Yes you can manually put all receivers in the bcc line of your reply.
> If you don't have all their addresses in an addressbook or if there are
> really many , you could use a diffrent technique:
>
> First put all the mails you want to respond to in an extra folder.
> Then write the standard email you want to send them all.
> Save the email. It will go to "Drafts" folder. Now drag that email to the
> folder which contains all the emails you want to reply to.
> Make sure the folder is opened and your answer mail is selected!!
> Now press ALT+F11 and paste the macro at the end of the post.
> Hit F5 and wait for some time. You will see how many replies Outlook sent.
>
> Sub ReplytoALLEmail()
> Dim compteur As Integer
> Dim objFolder As Folder
> Dim objTemplate As MailItem
> Dim objItem As MailItem
> Dim objReply As MailItem
> Dim strEmail As String
> Dim strEmails As String
> Dim strBody As String
> Dim strSubject As String
> Set objTemplate = Application.ActiveExplorer.Selection.Item(1)
> Set objFolder = objTemplate.Parent
> compteur = 0
> strBody = objTemplate.Body
> strSubject = objTemplate.Subject
> For Each objItem In objFolder.Items
> If Not (objTemplate = objItem) Then
> strEmail = objItem.SenderEmailAddress
> Set objReply = objItem.Reply()
> objReply.Body = strBody
> objReply.Subject = strSubject
> On Local Error Resume Next
> objReply.Send
> compteur = compteur + 1
> End If
> Next
> MsgBox " Operation Successfull! " & vbCrLf & vbCrLf & "
> Sent " & compteur & " Replies "
> End Sub
>
>
> --
> I am what I am - the cow don''t make ham...
>
>
> "qlfwyyd" wrote:
>
> > If I have to send a standard form letter to many applicants, in response to
> > their email is there a way to reply to many emails at once? Perhaps by adding
> > all respondents to the BCC list?
> >
> >

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Send reply to multiple messages Scott A Microsoft Outlook Discussion 1 22nd Aug 2009 01:51 PM
e-mail signature does not appear in e-mail messages that you reply PSUDano Microsoft Outlook Discussion 0 24th Feb 2008 05:34 PM
Is there a way to reply to multiple messages at once? =?Utf-8?B?SmVmZlF1aW50aWxpYW4=?= Microsoft Outlook Discussion 2 28th Jul 2007 01:54 AM
Reply to multiple messages =?Utf-8?B?VG9yZSBPcHNhaGw=?= Microsoft Outlook Discussion 0 11th Apr 2006 12:01 PM
Sending same reply to multiple messages =?Utf-8?B?Z3l0?= Microsoft Outlook Discussion 0 19th Apr 2005 08:48 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 11:31 PM.