
For the Social Benefits Distribution process, you need to create e-mail templates for approval and rejection. You use these templates in the last notification step of the process, where a notification is sent by e-mail to the employee.
You have the appropriate rights to work with the GP Administration workset.
More information: Authorizations
You may copy the examples provided in the Example section below and paste them in the text area.
The examples use replacements for a set of context and system parameters:
| Example of Approval Notification Template |
|---|
|
<html> <head> <title>Social Benefits Approval</title> </head> <body> <p> Dear Mr/Ms `{ writeln(ctxt.firstname); write(ctxt.lastname); }`,</p> <p>The social benefits distribution that you requested was <b>approved</b> on `{ writeln(sy.currenttime); }`. </p> <p>Best regards,</p> <p><i> `{ writeln(role.initiator.lastname); }` </i></p> </body> </html> |
| Example of Rejection Notification Template |
|---|
|
<html> <head> <title>Social Benefits Rejection</title> </head> <body> <p> Dear Mr/Ms `{ writeln(ctxt.firstname); write(ctxt.lastname); }`,</p> <p>The social benefits distribution that you requested was <b>rejected</b> on `{ writeln(sy.currenttime); }`. </p> <p>Best regards,</p> <p><i> `{ writeln(role.initiator.lastname); }` </i></p> </body> </html> |
More Information