FW.notifyWithTemplate <deprecated>
FW.notifyWithTemplate(who, subject, templateId, params)
Example
await FW.notifyWithTemplate("[email protected], [email protected]", "test template", 48017774, {
event:{
id:FW.getEvent().id
},
toto:'Japan'
}
);<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<h1>HELLO FROM ${toto}</h1>
<p>The event is #<code>${ event.id }</code></p>
</body>
</html>
Last updated