mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-08-05 19:16:08 +08:00

* feat(query-service): support for SMTP service Signed-off-by: Prashant Shahi <prashant@signoz.io> * feat(query-service): smtp minor fixes Signed-off-by: Prashant Shahi <prashant@signoz.io> * chore: fix smtp and add email template * chore: update template * chore(smpt-service): configurable invite email template path Signed-off-by: Prashant Shahi <prashant@signoz.io> --------- Signed-off-by: Prashant Shahi <prashant@signoz.io> Co-authored-by: Vishal Sharma <makeavish786@gmail.com>
15 lines
679 B
HTML
15 lines
679 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<body>
|
|
<p>Hi {{.CustomerName}},</p>
|
|
<p>You have been invited to join SigNoz project by {{.InviterName}} ({{.InviterEmail}}).</p>
|
|
<p>Please click on the following button to accept the invitation:</p>
|
|
<a href="{{.Link}}" style="background-color: #000000; color: white; padding: 14px 20px; text-align: center; text-decoration: none; display: inline-block;">Accept Invitation</a>
|
|
<p>Button not working? Paste the following link into your browser:</p>
|
|
<p>{{.Link}}</p>
|
|
<p>Follow docs here 👉 to <a href="https://signoz.io/docs/cloud/">Get Started with SigNoz Cloud</a></p>
|
|
<p>Thanks,</p>
|
|
<p>SigNoz Team</p>
|
|
</body>
|
|
</html>
|