Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

Dim mail As Variant

Set mail = CreateObject("Outlook.Application")


With mail.CreateItem(olMailItem)
.Subject = "salutation"
.To = Sheet1.Cells(1, 1).Value
.Body = "hello"
.Send
End With

You might also like