How to attach an email on EXCEL?

Excel Facts

What does custom number format of ;;; mean?
Three semi-colons will hide the value in the cell. Although most people use white font instead.
.
If you mean send an email via Excel :

Code:
Option Explicit


Sub Mail_workbook_Outlook()




Dim OutApp As Object
Dim OutMail As Object
Dim sndEmail As String
Dim ccEmail As String
Dim bccEmail As String


Set OutApp = CreateObject("Outlook.Application")
Set OutMail = OutApp.CreateItem(0)
sndEmail = Sheets("Sheet1").Range("D2").Value
ccEmail = Sheets("Sheet1").Range("D3").Value
bccEmail = Sheets("Sheet1").Range("D4").Value


On Error Resume Next
With OutMail
.To = sndEmail
.CC = ccEmail
.BCC = bccEmail
.Subject = "Implementation of Qlik"
.Body = "Dear colleague," & _
        "We are happy to inform you that Qlik has been successfully implemented for all reporting solution and document storage solution, where you will be able to retrieve customs related documents, issued prior or during the customs clearance, including (but not limited to) customs declaration, AWB, Invoice, etc."


.Display
End With
On Error GoTo 0




Set OutMail = Nothing
Set OutApp = Nothing
End Sub


Download workbook : https://www.amazon.com/clouddrive/share/ahceJ99Zaoqzqn6YRCsKmD3iAiBsg7wqBj6APyoE7ZK
 
Upvote 0

Forum statistics

Threads
1,215,110
Messages
6,123,148
Members
449,098
Latest member
Doanvanhieu

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