Dear Experts,
Been a while since I last posted (well this means very little that I've gotten sharper )

Anyway, I have this email challenge but it is simple in nature.
Pls note I do *not* want the code to send email, or save the workbook, or close the wb for me.
So far the code works great:
1. It attaches the wb to an email popup window
2. I need this --> Fill in the recipient's name (abc@abc.com)
Then stop right here. No code for subject needed.

Is this achievable? Many thanks and pls see code below. Also, what is nice about this code is so far it works with both Outlook and Netscape.

Lastly, I beg you one thing : pls do not ask me to go to ronbruin.com or refer me to any other link. I have been through many many long lenghthy codes that do not help solve no. 2 above.
[VBA]Sub attachWB ()
Dim x As Boolean
ThisWorkbook.Sheets.Copy
x = Application.Dialogs(xlDialogSendMail).Show
End Sub
[/VBA]

joelle