I have managed to move on quite a bit since i posted the previous message but am still stuck.
What I want is to be able to click one button to send emails as normal (i.e., the send button) and create another one next to that which I can click which will add the text ' - chkd' to the end of the subject line and then send the email. I have been sent the code
Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)
Item.Subject = Item.Subject & " - chkd"
End Sub
which I was told to put in the 'ThisOutlookSession' area. This did what I wanted, but it does it to all emails. How can I alter this so that I can create a separate macro to perform this.
Please keep it in laymans terms as I genuinely have little clue about VB!
Thanks a lot for any help.