Forum home » Delegate support and help forum » Microsoft Excel VBA Training and help » Vba send an email
Vba send an email
Resolved · Low Priority · Version 2003
Emma has attended:
Excel VBA Intro Intermediate course
Vba send an email
how do i send an email with vba?
For upcoming training course dates see: Pricing & availability
RE: vba send an email
Hi Emma
If you wish to email the current workbook to a colleague or anyone else then the following line of code will do exactly that:
ActiveWorkbook.SendMail Recipients:="theirname@theircompany.com", _
Subject:="Latest Accounts"
This creates a new e-mail with the above address and Subjent line and the workbook attached.
Hope this helps
Carlos
|
