emails: send welcome mail on signup.
This commit is contained in:
19
app/views/user_mailer/welcome_user.html.erb
Normal file
19
app/views/user_mailer/welcome_user.html.erb
Normal file
@@ -0,0 +1,19 @@
|
||||
<!doctype html>
|
||||
<html>
|
||||
<body>
|
||||
<h2>Hi <%= @user.name %>,</h2>
|
||||
|
||||
<p>
|
||||
Welcome to <%= Danbooru.config.app_name %>! Click the link below to verify your email address.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<%= link_to "Verify email address", verify_user_email_url(@user, email_verification_key: Danbooru::MessageVerifier.new(:email_verification_key).generate(@user.email_address.id)) %>
|
||||
</p>
|
||||
|
||||
<p>
|
||||
By verifying your email address, you can receive site notifications and you can
|
||||
recover your account if you ever forget your password.
|
||||
</p>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user