Here is an example tested in Office 2010:

'Copy range of interest Dim r As Range Set r = Range("B2:D5") r.Copy 'Open a new mail item Dim outlookApp As Outlook.Application Set outlookApp = CreateObject("Outlook.Application") Dim outMail As Outlook.MailItem Set outMail = outlookApp.CreateItem(olMailItem) 'Get its Word editor outMail.Display Dim wordDoc As Word.Document Set wordDoc = outMail.GetInspector.WordEditor 'To paste as picture wordDoc.Range.PasteAndFormat wdChartPicture 'To paste as a table 'wordDoc.Range.PasteExcelTable LinkedToExcel:=False, WordFormatting:=False, RTF:=False
Result:

In the above code, I used early binding to have access to autocomplete; To use this code, you need to install links to the Microsoft Outlook and Microsoft Word object libraries: Tools > References ... > check the boxes as:

Alternatively, you can forget about links and use late binding by declaring all Outlook and Word objects As Object instead of As Outlook.Application and As Word.Document , etc.
Apparently, you are having trouble implementing the above; the paste range is like a table, not the image in your email message. I have no explanation why this will happen.
An alternative is to paste as an image in Excel, and then cut and paste this image into your email address:
'Copy range of interest Dim r As Range Set r = Range("B2:D5") r.Copy 'Paste as picture in sheet and cut immediately Dim p As Picture Set p = ActiveSheet.Pictures.Paste p.Cut 'Open a new mail item Dim outlookApp As Outlook.Application Set outlookApp = CreateObject("Outlook.Application") Dim outMail As Outlook.MailItem Set outMail = outlookApp.CreateItem(olMailItem) 'Get its Word editor outMail.Display Dim wordDoc As Word.Document Set wordDoc = outMail.GetInspector.WordEditor 'Paste picture wordDoc.Range.Paste
As pointed out by WizzleWuzzle , it is possible to use PasteSpecial instead of PasteAndFormat or Paste ...
wordDoc.Range.PasteSpecial , , , , wdPasteBitmap
... but for some reason, the resulting image is also not displayed. See how the bottom table looks blurry:
