Attach active workbook to an email with VBA

Mpouklas

New Member
Joined
Apr 30, 2012
Messages
2
<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /><o:p>Hello Excel chaps,</o:p>
<o:p> </o:p>
I have a form that will be opened through a portal as a read only.<o:p></o:p>
<o:p> </o:p>
As soon as all the fields are filled I want the user to press Send and then automatically the following to be done:<o:p></o:p>
<o:p> </o:p>
1. Create a new email<o:p></o:p>
2. Set subject and recipient<o:p></o:p>
3. Attach the form at the email that was filled without saving it anywhere<o:p></o:p>
4. Then send

Could you advice me on the code to attach and send the active work book?

Cheers,

Georgios

 

Excel Facts

Which Excel functions can ignore hidden rows?
The SUBTOTAL and AGGREGATE functions ignore hidden rows. AGGREGATE can also exclude error cells and more.
Have a look at the SendMail method of the Workbook object...

Code:
ActiveWorkbook.SendMail Recipients:="john@abc.com", Subject:="Test", ReturnReceipt:=False

Note that if the subject is omitted, the document name is used. Also, the default value for ReturnReceipt is False.
 
Upvote 0

Forum statistics

Threads
1,223,243
Messages
6,170,967
Members
452,371
Latest member
Frana

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top