|
Re: Auto Emailing
Hi
I'm not sure how your sheet is set up but you can create a new module with the following..
Sub email()
ActiveWorkbook.SendMail _
Recipients:="your.choice@particularemail.com", _
Subject:="Email heading " & Format(Date - 1, "dd/mm/yyyy")
End Sub
The will send the workbook to the person you choose.
|