View Single Post
  #1  
Old August 10th 06, 07:54 PM posted to microsoft.public.outlook
gumby
external usenet poster
 
Posts: 5
Default Copy Text from Word Doc into E-mail message

I have the following macro to send out an e-mail with an attachment.

Sub SendMailMorning()
Set objMail = Application.CreateItem(0)
With objMail
.Subject = "Subject"
.To = "address"
.CC = "address"
.BCC = "address"
.Attachments.Add "c:\temp\File.rtf"
.Send
End With
End Sub

However I would like to be able to take the text out of the word doc
and place it into the message of the e-mail instead of attaching it. Is
this possible?

Thanks -

Ads