Initial commit
This commit is contained in:
13
app/views/user_mailer/existing_account.html.erb
Normal file
13
app/views/user_mailer/existing_account.html.erb
Normal file
@@ -0,0 +1,13 @@
|
||||
<p>
|
||||
Hi!
|
||||
</p>
|
||||
|
||||
<p>
|
||||
You have been added as an Account Manager for <%= @account.name %>.</p>
|
||||
<p>To switch between accounts, tap the account name at the top of the page, and select the appropriate account in the drop-down.
|
||||
</p>
|
||||
|
||||
|
||||
<p>
|
||||
- BiG Team
|
||||
</p>
|
||||
6
app/views/user_mailer/existing_account.text.erb
Normal file
6
app/views/user_mailer/existing_account.text.erb
Normal file
@@ -0,0 +1,6 @@
|
||||
Hi!
|
||||
|
||||
You have been added as an Account Manager for <%= @account.name %> To switch between accounts, tap the account name at the top of the page, and select the appropriate account in the drop-down.
|
||||

|
||||
- BiG Team
|
||||
|
||||
15
app/views/user_mailer/password_reset.html.erb
Normal file
15
app/views/user_mailer/password_reset.html.erb
Normal file
@@ -0,0 +1,15 @@
|
||||
<p>
|
||||
Hello,
|
||||
</p>
|
||||
|
||||
<p>
|
||||
To reset your password, please click on the following link:
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<%= link_to "Reset Password", edit_password_reset_url(id: @user.password_reset_token, host: AppHost.new.domain_with_port) %>
|
||||
</p>
|
||||
|
||||
<p>
|
||||
- BiG Team
|
||||
</p>
|
||||
7
app/views/user_mailer/password_reset.text.erb
Normal file
7
app/views/user_mailer/password_reset.text.erb
Normal file
@@ -0,0 +1,7 @@
|
||||
Hello,
|
||||
|
||||
To reset your password, please paste the following link into your browser:
|
||||
|
||||
<%= edit_password_reset_url(id: @user.password_reset_token, host: AppHost.new.domain_with_port) %>
|
||||
|
||||
- BiG Team
|
||||
14
app/views/user_mailer/project_invitation.html.erb
Normal file
14
app/views/user_mailer/project_invitation.html.erb
Normal file
@@ -0,0 +1,14 @@
|
||||
<p>
|
||||
Welcome to the ME Suite.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<%= @project.account.name %> has invited you to <%= @project.name %>.
|
||||
<% if @user_is_new %>
|
||||
Please <%= link_to "click here", edit_password_reset_url(id: @user.password_reset_token, host: AppHost.new.domain_with_port) %> to set your password.
|
||||
<% end %>
|
||||
</p>
|
||||
|
||||
<p>
|
||||
If you have questions about how to use the software, please visit <%= link_to "BiGMedia.ai", "https://www.bigmedia.ai/contact" %>.
|
||||
</p>
|
||||
10
app/views/user_mailer/project_invitation.text.erb
Normal file
10
app/views/user_mailer/project_invitation.text.erb
Normal file
@@ -0,0 +1,10 @@
|
||||
Welcome to the ME Suite.
|
||||
|
||||
<%= @project.account.name %> has invited you to <%= @project.name %>.
|
||||
|
||||
<% if @user_is_new %>
|
||||
Please click below to set your password.
|
||||
<%= edit_password_reset_url(id: @user.password_reset_token, host: AppHost.new.domain_with_port) %>
|
||||
<% end %>
|
||||
|
||||
If you have questions about how to use the software, please visit https://www.bigmedia.ai/contact.
|
||||
15
app/views/user_mailer/welcome.html.erb
Normal file
15
app/views/user_mailer/welcome.html.erb
Normal file
@@ -0,0 +1,15 @@
|
||||
<p>
|
||||
Welcome to BiG!
|
||||
</p>
|
||||
|
||||
<p>
|
||||
You have been added to the <q><%= @account.name %></q> account.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
To access your account, <%= link_to "click here", edit_password_reset_url(id: @user.password_reset_token, host: AppHost.new.domain_with_port) %> and set your password. Then use your email and new password to sign in.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
- BiG Team
|
||||
</p>
|
||||
9
app/views/user_mailer/welcome.text.erb
Normal file
9
app/views/user_mailer/welcome.text.erb
Normal file
@@ -0,0 +1,9 @@
|
||||
Welcome to BiG!
|
||||
|
||||
You have been added to the "<%= @account.name %>" account.
|
||||
|
||||
To access your account click the following URL and set your password. Then use your email and new password to sign in.
|
||||
|
||||
<%= edit_password_reset_url(id: @user.password_reset_token, host: AppHost.new.domain_with_port) %>
|
||||
|
||||
- BiG Team
|
||||
Reference in New Issue
Block a user