I have the below VBA code which i run to create a reply email.

Dim Reply As Outlook.MailItem
Dim Original As Outlook.MailItem

Set Original = Application.ActiveExplorer.Selection(1)

Set Reply = Original.ReplyAll
Reply.Subject = "RE: " & Original.Subject
Reply.Display

I have the following variable and have been unsuccessfully trying to paste it into "Reply" above.

Dim tTable As Word.Table