Email button

T

Tredown

I wish to have a button on a user form to be able to email the form. Not
knowing much about VBA I am not sure if it is possible

Thanks
 
G

gbpg

How would this work for emailing the contents of several list boxes to those
with email adresses in all the sheets?
 
B

Brice Cunningham

In Excel 2010

1. Enable Developer Mode
*File | Options | Customize Ribbon | Select check box for Developer and click OK
2. Developer | Macros | Create a new macro and name it Email
*Macro code:
Application.Dialogs(xlDialogSendMail).Show arg1:="[email protected]", _
arg2:="This goes in the subject line"

3. Insert | Shape | Pick a shape for the button and drag over an area of your workbook
4. Right click shape and choose assign macro
 
Top