Persist all recipients on Item forward event

Status
Not open for further replies.
C

cGFyZXNo

Hi,

Could any one please let me know if it is possible to persist all recipients

(To, and CC list) while I forward some item(might be mail item).

Thanks,

Paresh
 
What do you mean by persist them? Do you mean to keep them all as recipients

for the forward?

You would need to get the recipients of the original message and put them

into the forward item. Why I don't know, since all the original recipients

already received that message.

"paresh" <paresh> wrote in message

news:7C975E92-57D7-4296-8E86-6248A3D020A4@microsoft.com...
> Hi,

> Could any one please let me know if it is possible to persist all
> recipients
> (To, and CC list) while I forward some item(might be mail item).

> Thanks,
> Paresh
 
>>You would need to get the recipients of the original message and put them

into the forward item.

Exactly Ken, I want to do this. When we forward the mail by default all

recipient won't be added automatically. I have to add it one by one manually.

Basically I want to make Reply All works like Forward which keep all

attachments and images of original message.

Thanks,

Paresh
wrote:


> What do you mean by persist them? Do you mean to keep them all as recipients
> for the forward?

> You would need to get the recipients of the original message and put them
> into the forward item. Why I don't know, since all the original recipients
> already received that message.

> >

>

> "paresh" <paresh> wrote in message
> news:7C975E92-57D7-4296-8E86-6248A3D020A4@microsoft.com...
> > Hi,
> > Could any one please let me know if it is possible to persist all
> > recipients
> > (To, and CC list) while I forward some item(might be mail item).
> > Thanks,
> > Paresh


>
 
If the item is being forwarded using code just pick up the Recipients

collection of the original email and add them one by one to the newly

forwarded message.

If you are handling the Forward event on an item you would do the same

thing.

If you are just getting the item using NewInspector() then you would have to

find the original once you determined the item was a forward (about the only

way to do that is to use the Subject line and look for a forward prefix).

You do that by taking the ConversationTopic of the new forward item and

finding other items with that ConversationTopic value. Each new item in a

conversation has a ConversationIndex value one date/time struct longer than

the preceding item. That's how you find the item immediately preceding the

item of interest in the conversation.

After you get the original item you pull the recipients and add them one at

a time to the forward item.

"paresh" <paresh> wrote in message

news:2B38BB94-EE60-43F8-A228-0BB606B10559@microsoft.com...
> >>You would need to get the recipients of the original message and put them

> into the forward item.

> Exactly Ken, I want to do this. When we forward the mail by default all
> recipient won't be added automatically. I have to add it one by one
> manually.
> Basically I want to make Reply All works like Forward which keep all
> attachments and images of original message.

> Thanks,
> Paresh
 
The forward event doen;t contains the information about recipients of

previous items. Could you please point me some example then it would be

great.

BTW, I have done using NewInspector selection method but I am not able to

get To and CC list separately because they are read only while using with

Redemption library. I posted it here:

?&lang=&cr=&guid=&sloc=en-us&dg=mic...&p=1&tid=fad5023e-1f8d-46f4-9302-c5bd850e15f0

Thanks,

Paresh
wrote:


> If the item is being forwarded using code just pick up the Recipients
> collection of the original email and add them one by one to the newly
> forwarded message.

> If you are handling the Forward event on an item you would do the same
> thing.

> If you are just getting the item using NewInspector() then you would have to
> find the original once you determined the item was a forward (about the only
> way to do that is to use the Subject line and look for a forward prefix).
> You do that by taking the ConversationTopic of the new forward item and
> finding other items with that ConversationTopic value. Each new item in a
> conversation has a ConversationIndex value one date/time struct longer than
> the preceding item. That's how you find the item immediately preceding the
> item of interest in the conversation.

> After you get the original item you pull the recipients and add them one at
> a time to the forward item.

> >

>

> "paresh" <paresh> wrote in message
> news:2B38BB94-EE60-43F8-A228-0BB606B10559@microsoft.com...
> >>>You would need to get the recipients of the original message and put them

> > into the forward item.
> > Exactly Ken, I want to do this. When we forward the mail by default all
> > recipient won't be added automatically. I have to add it one by one
> > manually.
> > Basically I want to make Reply All works like Forward which keep all
> > attachments and images of original message.
> > Thanks,
> > Paresh


>
 
I told you to use the ConversationTopic property to locate all related items

and to check ConversationIndex to get the item order, which also usually

follows a date/time progression. You can google to see if you can find any

samples for that.

Dmitry explained about how to use those properties from Redemption, or you

can do what I said originally, get the Recipients and iterate them.

"paresh" <paresh> wrote in message

news:B6BCA029-3427-417C-BC87-A422F23AFE37@microsoft.com...
> The forward event doen;t contains the information about recipients of
> previous items. Could you please point me some example then it would be
> great.

> BTW, I have done using NewInspector selection method but I am not able to
> get To and CC list separately because they are read only while using with
> Redemption library. I posted it here:
> ?&lang=&cr=&guid=&sloc=en-us&dg=mic...&p=1&tid=fad5023e-1f8d-46f4-9302-c5bd850e15f0

> Thanks,
> Paresh
 
Status
Not open for further replies.
Similar threads
Thread starter Title Forum Replies Date
S Persist toolbar visible state Outlook VBA and Custom Forms 5
V How to persist attributes of a calendar folder and its items? Outlook VBA and Custom Forms 2
C Persist the email format and attachments / images while replying A Outlook VBA and Custom Forms 5
M USING INITIALS AS RECIPIENTS Using Outlook 1
J Outlook Autocomplete (Recipients) opens upward Using Outlook 2
M Outlook 2016 IOS recipients receive my paragraph double space as quadruple space Using Outlook 2
S Macro to extract email addresses of recipients in current drafted email and put into clipboard Outlook VBA and Custom Forms 2
R Disable conversation thread from replying of recipients in the same subject. Please help Using Outlook 0
N Macro to move all recipients to CC while replying Outlook VBA and Custom Forms 0
C Create new Message with shared contacts & BCC'ing recipients Outlook VBA and Custom Forms 0
C Macro to add multiple recipients to message Outlook VBA and Custom Forms 3
B Removing Recipients from an automatic response Outlook VBA and Custom Forms 2
Q Undisclosed recipients does not include sender Using Outlook 1
S What is /O=FIRST ORGANIZATION/OU=EXCHANGE ADMINISTRATIVE GROUP(***************)/CN=RECIPIENTS/CN=... Using Outlook 5
V Safe Recipients list Using Outlook 0
Diane Poremsky Foward a Message and CC the Original Recipients Using Outlook 0
Z Item.Recipients for Task Assignment on Send Outlook VBA and Custom Forms 10
Y Creating custom appointment request form with multiple mail recipients Outlook VBA and Custom Forms 5
B Print list of previously sent recipients Using Outlook 1
daveTQM Add email recipients to contacts Using Outlook 1
M Charter ISP Claims Outlook Generating STMP Errors of Too Many Recipients Using Outlook 1
D Meeting Request - Too Many Recipients Using Outlook 0
T Problem with .Recipients.Add("alias") Outlook VBA and Custom Forms 3
Fozzie Bear Change the Display Name recipients see for Exchange account Exchange Server Administration 0
D Delay Delivery: Visible to recipients? Using Outlook 1
P Your message did not reach some or all of the intended recipients. Using Outlook 2
L recipients are not recieving my outgoing emails Using Outlook 1
C Your message did not reach some or all of the intended recipients. Using Outlook 2
T Outlook 2013 Duplicate Recipients Using Outlook 9
E msg attachments lose their recipients "smtp" address Using Outlook 2
S Automatically move recipients to BCC field Using Outlook 3
S Undisclosed recipients Using Outlook 2
T Attachment sent from Outlook 2010 not shown by recipients Using Outlook 20
C Recipients Using Outlook 2
S Dynamically add recipients using combobox and checkbox????? Using Outlook 2
T OWA 2007 recent recipients and OWA 2010 nicknames Exchange Server Administration 5
W Recipients of Outlook messages have characters/words missing in body of message Using Outlook 6
S System Administrator email undeliverable to following recipients Outlook 2007 Using Outlook 4
C how can i re-order recipients (addressees) in alphabetical order? Using Outlook 4
M Microsoft Office Outlook Not Sending to all Recipients BCM (Business Contact Manager) 1
S MAcro - Need help in getting the recipients in to filed / cc field toput in an array Outlook VBA and Custom Forms 4
A Sending Messages Without Sending Attachment to CC Recipients Using Outlook 7
N Reading Recipients in a folder Outlook VBA and Custom Forms 1
T Propagating User Properties to Recipients Outlook VBA and Custom Forms 1
V Remove old recipients before forwarding Outlook VBA and Custom Forms 1
V What happens when "Resource" recipients are put in To/cc boxes? Outlook VBA and Custom Forms 3
M Add-in for verfying recipients email address is in the attachment Outlook VBA and Custom Forms 1
T Outlook365 search item listed as "potential matches" can't be opened Using Outlook 0
H Outlook 365 O365 outlook calendar item editing Using Outlook 1
P "Item could not be moved" message occurs frequently for IMAP inbox, Office 365 Using Outlook 0

Similar threads

Back
Top