Add this code to your macro:
Sub DefinedAreaToEmail()
Dim ToYou As String 'The receiver of the email
Application.SheetsInNewWorkBook = 1
ToYou = InputBox("Please type the name of the receiver of this email.")
If ToYou = "" Then Exit Sub
Range("A2:C15").Select
Selection.Copy
Workbooks.Add
ActiveSheet.Paste
ActiveWorkbook.SaveAs "Attachment.xls"
Application.Dialogs(xlDialogSendMail).Show ToYou, "Updated Attachment"
End Sub
Hope this works.
Swisse
I have a macro set up which copies cells from Sheet1 to Sheet2. I would like to add to the macro and have those cells copied (A2:C15) and then paste them into an email to send. I have tried to use the macro recorder to send the sheet (Not really what I want to do though) and it doesn't show anything in the recording. Can you help?

Chowhound
Comic Vine
GameFAQs
GameSpot
Giant Bomb
TechRepublic