Template HTML

Some functionality within Workflow can only be accomplished by using HTML. This section provides some examples of this. The examples below

Candidate list for client emails

When creating an email for a client you may wish to include information about the candidate(s). In order to do this you must include the following structure:

<div><candidates>
    [candidate content here e.g. ${candidate.name}]
</candidates></div>

All information regarding individual candidates must be included within the div and candidate tags. This section is then repeated for each candidate.

CV send - candidate email

For the specific case of sending candidate emails via the CV send functionality a few tags are required at the very top of the HTML content. For every candidate CV send email include the following at the top of the HTML source:

<div><candidateemail></candidateemail></div>

Interview scheduler

When sending a client email within an interview scheduler workflow the repeating candidates section is required, as above. The below example shows how you can include the date and time of the individual interviews.

<div><candidates>
    <table>
        <tbody>
            <tr>
                <td>
                    ${candidate.appointment.dateBegin.formatDate("dd/MM/yyyy' at 'h:mm a","Europe/London")}
                </td>
            </tr>
        </tbody>
    </table>
</candidates></div>

Last updated

Was this helpful?