Hi,
Thank you for your enquiry.
If you are using the standard
E-mail action (located in the
Launch group of actions), simply uncheck the
Show mail dialog and
Prompt MAPI log on if required options in the settings of the action.
If you are using the script
SendEmail() action, you will need to ensure that the
ShowMail and
MAPI parameters in this action are both set to
false. For example:
Code:
SendEmail( support@digitalworkshop.com, rgarrett@digitalworkshop.com, rg@digitalworkshop.com, Support Question, Testing, "C:\\test.txt", false, false )
will send an e-mail addressed to
support@digitalworkshop.com, with a copy sent to
rgarrett@digitalworkshop.com, and a blind copy sent to
rg@digitalworkshop.com. The subject of the e-mail will be
Support Question and the body will contain the word
Testing. The file
C:\test.txt will be attached to the e-mail, and as the ShowMail and MAPI parameters are set to false, the user will see no mail dialog and will not have to (nor be able to) click Send to confirm delivery.
Kind regards,