Hi <%= @resource.name %>,

<% account_user = @resource&.account_users&.first %> <% is_saml_account = account_user&.account&.saml_enabled? %> <% if account_user&.inviter.present? && @resource.unconfirmed_email.blank? %> <% if is_saml_account %>

<%= account_user.inviter.name %>, with <%= account_user.account.name %>, has invited you to access <%= global_config['BRAND_NAME'] || 'Chatwoot' %> via Single Sign-On (SSO).

Your organization uses SSO for secure authentication. You will not need a password to access your account.

<% else %>

<%= account_user.inviter.name %>, with <%= account_user.account.name %>, has invited you to try out <%= global_config['BRAND_NAME'] || 'Chatwoot' %>.

<% end %> <% end %> <% if @resource.confirmed? %>

You can login to your <%= global_config['BRAND_NAME'] || 'Chatwoot' %> account through the link below:

<% else %> <% if account_user&.inviter.blank? %>

Welcome to <%= global_config['BRAND_NAME'] || 'Chatwoot' %>! We have a suite of powerful tools ready for you to explore. Before that we quickly need to verify your email address to know it's really you.

<% end %> <% unless is_saml_account %>

Please take a moment and click the link below and activate your account.

<% end %> <% end %> <% if @resource.unconfirmed_email.present? %>

<%= link_to 'Confirm my account', frontend_url('auth/confirmation', confirmation_token: @token) %>

<% elsif @resource.confirmed? %> <% if is_saml_account %>

You can now access your account by logging in through your organization's SSO portal.

<% else %>

<%= link_to 'Login to my account', frontend_url('auth/sign_in') %>

<% end %> <% elsif account_user&.inviter.present? %> <% if is_saml_account %>

You can access your account by logging in through your organization's SSO portal.

<% else %>

<%= link_to 'Confirm my account', frontend_url('auth/password/edit', reset_password_token: @resource.send(:set_reset_password_token)) %>

<% end %> <% else %>

<%= link_to 'Confirm my account', frontend_url('auth/confirmation', confirmation_token: @token) %>

<% end %>