- Emails are now processed from Jinja2 templates found in `charts/email-templates`, to support easier updates via helm chart in the future. - The available templates are: `invite`, `password_reset`, `validate` and `failed_bg_job`. - Each template can be text only or also include HTML. The format of the template is: ``` subject ~~~ <html content> ~~~ text ``` - A new `support_email` field is also added to the email block in values.yaml Invite Template: - Currently, only the invite template includes an HTML version, other templates are text only. - The same template is used for new and existing users, with slightly different text if adding user to an existing org. - If user is invited by the superadmin, the invited by field is not included, otherwise it also includes 'You have been invited by X to join Y'
		
			
				
	
	
		
			65 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			65 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| Welcome to Browsertrix Cloud!
 | ||
| ~~~
 | ||
| <html>
 | ||
| <body>
 | ||
| <p>Hello!</p>
 | ||
| 
 | ||
| <p>Welcome to Browsertrix Cloud!</p>
 | ||
| 
 | ||
| {% if sender %}
 | ||
| <p>You have been invited by {{ sender }} to join "{{ org_name }}" on Browsertrix Cloud!
 | ||
| </p>
 | ||
| {% endif %}
 | ||
| 
 | ||
| {% if is_new %}
 | ||
| <p>You can now set up your account using the link below.</p>
 | ||
| 
 | ||
| <p style="font-weight: bold; padding: 12px; background-color: lightgrey"><a href="{{ invite_url }}">Click here to create an account.</a></p>
 | ||
| {% else %}
 | ||
| <p style="font-weight: bold; padding: 12px; background-color: lightgrey"><a href="{{ invite_url }}">Click here to accept this invite.</a></p>
 | ||
| {% endif %}
 | ||
| 
 | ||
| <p>When you first access your account, you’ll be directed to your Dashboard. It contains information you may want to view frequently including: Storage Usage, Crawling Info,  Collections, and Monthly Usage History. From there, you can click <i>+ Create New</i> to create your first Crawl Workflow!
 | ||
| 
 | ||
| 
 | ||
| <p>For more info, check out the <b><a href="https://docs.browsertrix.cloud/user-guide/">Browsertrix Cloud User Guide</a></b></p>
 | ||
| 
 | ||
| 
 | ||
| <p>
 | ||
| We want you to get the most from your Browsertrix Cloud experience!
 | ||
| </p>
 | ||
| 
 | ||
| <p>Let us know if you need any questions or feedback.</p>
 | ||
| You can connect with our team at <a href="mailto:{{ support_email }}">{{ support_email }}</a></p>
 | ||
| </p>
 | ||
| 
 | ||
| <p><i>The Webrecorder Team</i></p>
 | ||
| </body>
 | ||
| </html>
 | ||
| ~~~
 | ||
| Hello!
 | ||
| 
 | ||
| Welcome to Browsertrix Cloud!
 | ||
| 
 | ||
| {% if sender %}
 | ||
| You have been invited by {{ sender }} to join their organization, "{{ org_name }}" on Browsertrix Cloud!
 | ||
| 
 | ||
| {% else %}
 | ||
| 
 | ||
| You can join by clicking here: {{ invite_url }}
 | ||
| {% endif %}
 | ||
| 
 | ||
| When you first access your account, you’ll be directed to your Dashboard. It contains information you may want to view frequently including: Storage Usage, Crawling Info,  Collections, and Monthly Usage History.
 | ||
| 
 | ||
| For more info, check out Browsertrix Cloud User Guide at: https://docs.browsertrix.cloud/user-guide/
 | ||
| 
 | ||
| 
 | ||
| If you ever need to reset your password, go here: {{ origin }}/log-in/forgot-password
 | ||
| 
 | ||
| 
 | ||
| We want you to get the most from your Browsertrix Cloud experience. Let us know if you need any questions or feedback.
 | ||
| You can connect with our team at {{ support_email }}.
 | ||
| 
 | ||
| 
 | ||
| 
 |