Dear Selva,

Please use below code to add message

Sub Send_Email()
Dim olApp As Outlook.Application
Dim olMail As MailItem
Dim mailbody As String
Set olApp = New Outlook.Application
Set olMail = olApp.CreateItem(olMailItem)
With olMail
.To = "noorain.ans...@gmail.com"
.CC = "noorain.ans...@one97.net"
.Subject = "Try it"
.Body = "Dear " & Application.UserName & "," & vbCrLf & vbCrLf & "Please
find the ----- below -----" & vbCrLf & vbCrLf & "Regards," & vbCrLf &
vbCrLf & "Noorain Ansari"
.Attachments.Add ActiveWorkbook.FullName
.Display
'.Send
End With
mailbody = vbNullString
End Sub

-- 
Thanks & regards,
Noorain Ansari
 *http://noorainansari.com/* <http://excelmacroworld.blogspot.com/>
*http://excelmacroworld.blogspot.com/*<http://excelmacroworld.blogspot.com/>

On Wed, Mar 14, 2012 at 11:13 AM, LearnExcel <sendse...@gmail.com> wrote:

> i'm using the following code to send email how do i add something to the
> body?
>
>
> does anyone know if its possible to add a message to the email?
>
>   ThisWorkbook.Sheets(1).Copy
>
>     With ActiveWorkbook
>
>          .SendMail Recipients:="emailaddr...@df.com", _
>
>           Subject:="Try Me")
>
>          .Close SaveChanges:=False
>
>     End With
>
>
> *End Sub*
>
> --
> FORUM RULES (986+ members already BANNED for violation)
>
> 1) Use concise, accurate thread titles. Poor thread titles, like Please
> Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
> will not get quick attention or may not be answered.
>
> 2) Don't post a question in the thread of another member.
>
> 3) Don't post questions regarding breaking or bypassing any security
> measure.
>
> 4) Acknowledge the responses you receive, good or bad.
>
> 5) Cross-promotion of, or links to, forums competitive to this forum in
> signatures are prohibited.
>
> NOTE : Don't ever post personal or confidential data in a workbook. Forum
> owners and members are not responsible for any loss.
>
>
> ------------------------------------------------------------------------------------------------------
> To post to this group, send email to excel-macros@googlegroups.com
>

-- 
FORUM RULES (986+ members already BANNED for violation)

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.

2) Don't post a question in the thread of another member.

3) Don't post questions regarding breaking or bypassing any security measure.

4) Acknowledge the responses you receive, good or bad.

5)  Cross-promotion of, or links to, forums competitive to this forum in 
signatures are prohibited. 

NOTE  : Don't ever post personal or confidential data in a workbook. Forum 
owners and members are not responsible for any loss.

------------------------------------------------------------------------------------------------------
To post to this group, send email to excel-macros@googlegroups.com

Reply via email to