I often have to send email of copied/pasted text. I want to be able to run a macro to change the format of this text depending on where its being copied from. In Word I could just use the following code, but I need it converted to the Outlook object model which I'm not familiar with. Anyone who can fix it or point me to where I can find the correct information I'd be very grateful.
Thanks!
| Code: |
Selection.Font.Color = wdColorRed
Selection.Font.Name = "Times New Roman"
Selection.Font.Size = 10
|