This is a two part question, firstly I've setup some buttons on a ribbon in which I can insert the e-mail addresses I want to use, some will have more than one e-mail recipient. However, what ever is already in the cc box is over written, with the e-mail address that is being pressed.
With objItem
.To = EmailTo
.CC = "JoeBloggs@anywhere.com"
End With
The code above is what I'm using, is there away to append it to the cc box rather than overwrite what is already there.
Secondly, if I click the To button on the e-mail, then a list of addresses can be found, if I search for my local address book and select a specific contact group, this is added to the e-mail. Is it possible to have a macro that will select my local address book so that I can name the groups in the macro and they automatically inserted into the To box?
Hopefully, this will be the last question for the foreseeable future.
With objItem
.To = EmailTo
.CC = "JoeBloggs@anywhere.com"
End With
The code above is what I'm using, is there away to append it to the cc box rather than overwrite what is already there.
Secondly, if I click the To button on the e-mail, then a list of addresses can be found, if I search for my local address book and select a specific contact group, this is added to the e-mail. Is it possible to have a macro that will select my local address book so that I can name the groups in the macro and they automatically inserted into the To box?
Hopefully, this will be the last question for the foreseeable future.