{% extends "email/base.html" %} {% block title %}New member joined {{ org_name }}{% endblock %} {% block hero %} {% include "email/partials/_hero.html" with hero_variant="success" hero_title="New team member" hero_subtitle=org_name hero_icon="users-group.png" %} {% endblock %} {% block content %}

Hi,

{{ member_name }} ({{ member_email }}) joined {{ org_name }}. Manage their role in Team settings.

{% include "email/partials/_detail_row.html" with pill_label="MEMBER" pill_value=member_name pill_variant="success" pill_radius="top" %} {% include "email/partials/_detail_row.html" with pill_label="EMAIL" pill_value=member_email pill_value_color="#0D41FF" pill_variant="gray" %} {% include "email/partials/_detail_row.html" with pill_label="ORGANISATION" pill_value=org_name pill_variant="gray" pill_border="none" pill_radius="bottom" %}
{% include "email/partials/_cta.html" with cta_url=team_url cta_label="View Team" %} {% endblock %}