Please forgive me as this is the VERY first VB code I have ever tried to create. I am trying to simply create a macro and assign it to a button. The macro is simply opening a new e-mail, creating the send to, the subject, and a simple body text, then pasting something from the clipboard and then send. Not rocket science right?
I get all aspects of this thing up until the PASTE function. Here is my current code, could someone tell me how to just execute a paste function? As always thank you for the help
Sub CIS()
Dim msg As Outlook.MailItem
Set msg = Application.CreateItem(olMailItem)
msg.To = “testemail@helpme.com”
msg.Subject = “This is the subject”
msg.Body = “I will put the body text here”
***this is where I am stuck*******
msg.Send
End Sub