Adding extra email address to a single Worksheet

G

Guest

Hello from Steved

I am not sure how to add extra email address
I need to add 13 Thankyou.

Sub Mail_Crinel()
Dim wb As Workbook
Dim strdate As String

strdate = Format(Now, "dd-mm-yy")

Application.ScreenUpdating = False

Sheets("Paradox-Kilometres").Copy

Cells.Copy
Cells.PasteSpecial xlPasteValues
Cells(1).Select
Application.CutCopyMode = False

Set wb = ActiveWorkbook
With wb


.SendMail "(e-mail address removed)", _
"Auckland Kilometres"

.Close False

End With

Application.ScreenUpdating = True
End Sub
 
D

Dave Peterson

You can put them into an array:

.SendMail Array("(e-mail address removed)", _
"(e-mail address removed)", _
"(e-mail address removed)"), _
"Auckland Kilometres"
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top