Autogenerate and send emails |
In the node Email, you can send emails to your participant. An email button will appear during the online meeting. The host of the online meeting will get a copy of this email.
Copy the code snippet into your script
<node id="Autogenerate_and_send_emails" type="Email"> <name>Autogenerate and send emails</name> <templateCode>email01</templateCode> <attachments> <attachment fileCode="pres01" attach="true" /> <attachment templateCode="att01" attach="true" /> <attachment uploadId="document1" attach="true" /> </attachments> </node> |
After copying it, make sure to do the following:
1. Make sure the node id is unique. Give it a name / number (here: Autogenerate_and_send_emails).
2. You can give the node a descriptive name (here: Autogenerate and send emails). This name will also be the subject of the email.
3. Make sure the templateCode is referring to the code in the 'template library' (here: email01). An attachment can be a file from the 'document library' (here: pres01), a template from the 'template library' (here: att01) or an uploaded document (eg. uploadId="doc01").
Each node can end with a goto field. If there is no goto step, the script will automatically jump to the next node. You can add, just before the </node> the following code <goto>nextNode</goto>, where nextNode needs to be replaced by the node id.
Tip watch: Video: Create your own Script (basic) to create your first own Script.