مراية لـ
https://github.com/postalserver/postal.git
تم المزامنة 2025-12-01 05:43:04 +00:00
initial commit from appmail
هذا الالتزام موجود في:
12
app/views/app_mailer/new_user.text.erb
Normal file
12
app/views/app_mailer/new_user.text.erb
Normal file
@@ -0,0 +1,12 @@
|
||||
Hello <%= @user.first_name %>,
|
||||
|
||||
To verify your e-mail address you will be prompted to enter a code when you login to your Postal account. The code you need to enter is:
|
||||
|
||||
<%= @user.email_verification_token %>
|
||||
|
||||
Once you've done that, you'll be able to access your account.
|
||||
|
||||
Thanks,
|
||||
|
||||
<%= Postal.smtp_from_name %>
|
||||
<%= Postal.smtp_from_address %>
|
||||
12
app/views/app_mailer/password_reset.text.erb
Normal file
12
app/views/app_mailer/password_reset.text.erb
Normal file
@@ -0,0 +1,12 @@
|
||||
Hello there,
|
||||
|
||||
You (or someone pretending to be you) have requested a new password for your Postal account. To choose a new password, please click the link below and you'll be able to create a new password and login to Postal.
|
||||
|
||||
<%= Postal.host_with_protocol %>/login/reset/<%= @user.password_reset_token %><%= @return_to ? "?return_to=#{ERB::Util.url_encode(@return_to)}" : '' %>
|
||||
|
||||
If you didn't request this, you can ignore this e-mail.
|
||||
|
||||
Thanks,
|
||||
|
||||
<%= Postal.smtp_from_name %>
|
||||
<%= Postal.smtp_from_address %>
|
||||
17
app/views/app_mailer/server_send_limit_approaching.text.erb
Normal file
17
app/views/app_mailer/server_send_limit_approaching.text.erb
Normal file
@@ -0,0 +1,17 @@
|
||||
We're writing to let you know that your <%= @server.name %> mail server is approaching its send limit. All mail servers have a limit of how much e-mail they are permitted to send in a rolling 60 minute window. At present you have sent <%= @server.send_volume %> messages and have a limit of <%= @server.send_limit %>.
|
||||
|
||||
Orgaization: <%= @server.organization.name %>
|
||||
Server: <%= @server.name %>
|
||||
Send Limit: <%= @server.send_limit %>
|
||||
Current Volume: <%= @server.send_volume %>
|
||||
|
||||
When you reach your limit, any mail you send will be held in our system until it is manually unheld by you through our web interface or using our API.
|
||||
|
||||
You can view more information about this server at:
|
||||
|
||||
<%= Postal.host_with_protocol %>/org/<%= @server.organization.permalink %>/servers/<%= @server.permalink %>
|
||||
|
||||
Thanks,
|
||||
|
||||
<%= Postal.smtp_from_name %>
|
||||
<%= Postal.smtp_from_address %>
|
||||
17
app/views/app_mailer/server_send_limit_exceeded.text.erb
Normal file
17
app/views/app_mailer/server_send_limit_exceeded.text.erb
Normal file
@@ -0,0 +1,17 @@
|
||||
We're writing to let you know that your <%= @server.name %> mail server has exceeded its send limit. All mail servers have a limit of how much e-mail they are permitted to send in a rolling 60 minute window. At present you have sent <%= @server.send_volume %> messages and have a limit of <%= @server.send_limit %>.
|
||||
|
||||
Orgaization: <%= @server.organization.name %>
|
||||
Server: <%= @server.name %>
|
||||
Send Limit: <%= @server.send_limit %>
|
||||
Current Volume: <%= @server.send_volume %>
|
||||
|
||||
All messages that you send until your volume drops will now be held in our system. You will need to manually release any of these messages that you wish to send. You can do this through our web interface or using our API.
|
||||
|
||||
You can view more information about this server at:
|
||||
|
||||
<%= Postal.host_with_protocol %>/org/<%= @server.organization.permalink %>/servers/<%= @server.permalink %>
|
||||
|
||||
Thanks,
|
||||
|
||||
<%= Postal.smtp_from_name %>
|
||||
<%= Postal.smtp_from_address %>
|
||||
12
app/views/app_mailer/server_suspended.text.erb
Normal file
12
app/views/app_mailer/server_suspended.text.erb
Normal file
@@ -0,0 +1,12 @@
|
||||
Hello,
|
||||
|
||||
We're writing to inform you that, unfortunately, we have had to suspend one of your mail servers on Postal.
|
||||
|
||||
Organization: <%= @server.organization.name %>
|
||||
Server: <%= @server.name %>
|
||||
Reason: <%= @server.actual_suspension_reason %>
|
||||
|
||||
Thanks,
|
||||
|
||||
<%= Postal.smtp_from_name %>
|
||||
<%= Postal.smtp_from_address %>
|
||||
10
app/views/app_mailer/user_invite.text.erb
Normal file
10
app/views/app_mailer/user_invite.text.erb
Normal file
@@ -0,0 +1,10 @@
|
||||
You've been invited to access the <%= @organization.name %> organization on Postal.
|
||||
|
||||
To accept this invitation, please click the link below to create an account or login to an existing one.
|
||||
|
||||
<%= Postal.host_with_protocol %>/join/<%= @user_invite.uuid %>
|
||||
|
||||
Thanks,
|
||||
|
||||
<%= Postal.smtp_from_name %>
|
||||
<%= Postal.smtp_from_address %>
|
||||
14
app/views/app_mailer/verify_domain.text.erb
Normal file
14
app/views/app_mailer/verify_domain.text.erb
Normal file
@@ -0,0 +1,14 @@
|
||||
Hello there,
|
||||
|
||||
<%= @user.name %> (<%= @domain.owner.is_a?(Organization) ? @domain.owner.name : @domain.owner.organization.name %>) would like to start sending e-mail from <%= @domain.name %> using Postal. We're writing to you to request your authorization to allow this domain to be used to send e-mail through their mail server.
|
||||
|
||||
If you agree, please provide the code below to <%= @user.first_name %> who will be able to enter it into our web interface to continue.
|
||||
|
||||
<%= @domain.verification_token %>
|
||||
|
||||
If you don't agree, just ignore this e-mail.
|
||||
|
||||
Thanks,
|
||||
|
||||
<%= Postal.smtp_from_name %>
|
||||
<%= Postal.smtp_from_address %>
|
||||
14
app/views/app_mailer/verify_email_address.text.erb
Normal file
14
app/views/app_mailer/verify_email_address.text.erb
Normal file
@@ -0,0 +1,14 @@
|
||||
Hi <%= @user.first_name %>,
|
||||
|
||||
You've just changed the e-mail address on your Postal account. So that we can verify that you own the new address you've entered, we need you to enter the code below into the box shown in your web browser.
|
||||
|
||||
<%= @user.email_verification_token %>
|
||||
|
||||
If you don't have a box on your screen, just login to your Postal account to continue.
|
||||
|
||||
<%= Postal.host_with_protocol %>/login
|
||||
|
||||
Thanks,
|
||||
|
||||
<%= Postal.smtp_from_name %>
|
||||
<%= Postal.smtp_from_address %>
|
||||
المرجع في مشكلة جديدة
حظر مستخدم