shetty2san

New Member
Joined
Jun 29, 2020
Messages
2
Office Version
  1. 2007
Platform
  1. Windows
Hi,

I want to copy and paste the columns value to outlook mail from same excel sheet,

OS : Windows-8
Outlook : Outlook2016

Below are code i have and request you to help for other part.



Private Sub Button50_Click()
On Error GoTo ErrHandler

' SET Outlook APPLICATION OBJECT.
Dim objOutlook As Object
Dim xInspect As Object
Dim pageEditor As Object
Dim objEmail As Object
Dim report As Worksheet


Set objOutlook = CreateObject("Outlook.Application")

' CREATE EMAIL OBJECT.

Set objEmail = objOutlook.CreateItem(olMailItem)
With objEmail
.To = ""
.CC = ""
.Subject = "Values"
.body = "Dear Team" & vbNewLine & vbNewLine & "Pls find the values" & vbNewLine & vbNewLine
.display ' DISPLAY MESSAGE


.display
.send

End With

' CLEAR.
'Set objEmail = Nothing: Set objOutlook = Nothing: Set pageEditor = Nothing:



ErrHandler:

End Sub
 

Excel Facts

Do you hate GETPIVOTDATA?
Prevent GETPIVOTDATA. Select inside a PivotTable. In the Analyze tab of the ribbon, open the dropown next to Options and turn it off
a
Hi,

I want to copy and paste the columns value to outlook mail from same excel sheet,

OS : Windows-8
Outlook : Outlook2016

Below code will run successfully by creating mail and writing subject and body. I need table to be copied and pasted in same mail



Private Sub Button50_Click()
On Error GoTo ErrHandler

' SET Outlook APPLICATION OBJECT.
Dim objOutlook As Object
Dim xInspect As Object
Dim pageEditor As Object
Dim objEmail As Object
Dim report As Worksheet


Set objOutlook = CreateObject("Outlook.Application")

' CREATE EMAIL OBJECT.

Set objEmail = objOutlook.CreateItem(olMailItem)
With objEmail
.To = ""
.CC = ""
.Subject = "Values"
.body = "Dear Team" & vbNewLine & vbNewLine & "Pls find the values" & vbNewLine & vbNewLine
.display ' DISPLAY MESSAGE


.display
.send

End With

' CLEAR.
'Set objEmail = Nothing: Set objOutlook = Nothing: Set pageEditor = Nothing:



ErrHandler:

End Sub
 
Upvote 0

Forum statistics

Threads
1,214,565
Messages
6,120,254
Members
448,952
Latest member
kjurney

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top