Hi All,
Here is my requirement !
Is it possible to open a new outlook message from excel..
if so how can this be done..
Please help me out in this..
-Sindhuja
Hi All,
Here is my requirement !
Is it possible to open a new outlook message from excel..
if so how can this be done..
Please help me out in this..
-Sindhuja
Code supplied by MindSpring![]()
Sub Send_Msg() Dim objOL As New Outlook.Application Dim objMail As MailItem Set objOL = New Outlook.Application Set objMail = objOL.CreateItem(olMailItem) With objMail .To = "name@domain.com" .Subject = "Automated Mail Response" .Body = "This is an automated message from Excel. " & _ "The cost of the item that you inquired about is: " & _ Format(Range("A1").Value, "$ #,###.#0") & "." .Display End With Set objMail = Nothing Set objOL = Nothing End Sub
Not all forums are the same - seek and you shall find
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks