W
Womble
I've got some code that I'm changing the reply method for.
In order to ensure the original message is not changed, I'm creating a copy
of the item but with the reply method I get a "Could not send the message" -
any thoughts. An extract from the relevent section:-
Set CurrMail = application.ActiveInspector.CurrentItem
Set NewMail = CurrMail.Copy()
Set NewFwd = NewMail.Reply
NewFwd.Display
I know it's the .Reply because if I replace NewMail.Reply with
Currmail.reply it works perfectly.
In order to ensure the original message is not changed, I'm creating a copy
of the item but with the reply method I get a "Could not send the message" -
any thoughts. An extract from the relevent section:-
Set CurrMail = application.ActiveInspector.CurrentItem
Set NewMail = CurrMail.Copy()
Set NewFwd = NewMail.Reply
NewFwd.Display
I know it's the .Reply because if I replace NewMail.Reply with
Currmail.reply it works perfectly.