diff options
Diffstat (limited to 'app/views/rodauth_mailer')
6 files changed, 31 insertions, 0 deletions
diff --git a/app/views/rodauth_mailer/email_auth.text.erb b/app/views/rodauth_mailer/email_auth.text.erb new file mode 100644 index 0000000..9b989fe --- /dev/null +++ b/app/views/rodauth_mailer/email_auth.text.erb @@ -0,0 +1,5 @@ +Someone has requested a login link for the account with this email +address. If you did not request a login link, please ignore this +message. If you requested a login link, please go to +<%= @rodauth.email_auth_email_link %> +to login to this account. diff --git a/app/views/rodauth_mailer/password_changed.text.erb b/app/views/rodauth_mailer/password_changed.text.erb new file mode 100644 index 0000000..2e48708 --- /dev/null +++ b/app/views/rodauth_mailer/password_changed.text.erb @@ -0,0 +1,2 @@ +Someone (hopefully you) has changed the password for the account +associated to this email address. diff --git a/app/views/rodauth_mailer/reset_password.text.erb b/app/views/rodauth_mailer/reset_password.text.erb new file mode 100644 index 0000000..fcfb698 --- /dev/null +++ b/app/views/rodauth_mailer/reset_password.text.erb @@ -0,0 +1,5 @@ +Someone has requested a password reset for the account with this email +address. If you did not request a password reset, please ignore this +message. If you requested a password reset, please go to +<%= @rodauth.reset_password_email_link %> +to reset the password for the account. diff --git a/app/views/rodauth_mailer/unlock_account.text.erb b/app/views/rodauth_mailer/unlock_account.text.erb new file mode 100644 index 0000000..3d24759 --- /dev/null +++ b/app/views/rodauth_mailer/unlock_account.text.erb @@ -0,0 +1,5 @@ +Someone has requested that the account with this email be unlocked. +If you did not request the unlocking of this account, please ignore this +message. If you requested the unlocking of this account, please go to +<%= @rodauth.unlock_account_email_link %> +to unlock this account. diff --git a/app/views/rodauth_mailer/verify_account.text.erb b/app/views/rodauth_mailer/verify_account.text.erb new file mode 100644 index 0000000..78ff6ad --- /dev/null +++ b/app/views/rodauth_mailer/verify_account.text.erb @@ -0,0 +1,4 @@ +Someone has created an account with this email address. If you did not create +this account, please ignore this message. If you created this account, please go to +<%= @rodauth.verify_account_email_link %> +to verify the account. diff --git a/app/views/rodauth_mailer/verify_login_change.text.erb b/app/views/rodauth_mailer/verify_login_change.text.erb new file mode 100644 index 0000000..693680b --- /dev/null +++ b/app/views/rodauth_mailer/verify_login_change.text.erb @@ -0,0 +1,10 @@ +Someone with an account has requested their login be changed to this email address: + +Old email: <%= @account.email %> + +New email: <%= @new_email %> + +If you did not request this login change, please ignore this message. If you +requested this login change, please go to +<%= @rodauth.verify_login_change_email_link %> +to verify the login change. |