Skip to content

Instantly share code, notes, and snippets.

@elricstorm
Created January 17, 2010 19:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save elricstorm/279547 to your computer and use it in GitHub Desktop.
Save elricstorm/279547 to your computer and use it in GitHub Desktop.
<html>
<head>
<title>Activation Successful</title>
</head>
<body>
<table align="center" border="0" cellpadding="0" cellspacing="0" width="600">
<tr valign="top">
<td width="100%">
<span>Your Account Has Been Activated<br/>
<br/></span>
<p>Dear <%=h @user.login.camelcase %>,</p>
<p>Welcome Aboard!</p>
<p>Please visit our site and look over all of the services we offer. </p>
<p>Please let us know if there is anything we can do to make our site and services
better. Your input matters!</p>
<p>Start using your account today. Visit <%=h @url %></p>
<p>Sincerely,</p>
<br/>
<span>The Little Rascals</span>
</td>
</tr>
</table>
</body>
</html>
<%=h @user.login %>, your account has been activated. Welcome aboard!
<%=h @url %>
Please visit our site and look over all of the services we offer.
Please let us know if there is anything we can do to make our site and services
better. Your input matters!
Sincerely,
The Little Rascals
<html>
<head>
<title>Forgot Password</title>
</head>
<body>
<table align="center" border="0" cellpadding="0" cellspacing="0" width="600">
<tr valign="top">
<td width="100%">
<span>Forgot your password? Not to worry..<br/>
<br/></span>
<p>Dear <%= @user.login.camelcase %>,</p>
<p>We have had a request to reset your password, so please visit the following url:</p>
<h4><%= @url %></h4>
<p>If you did not request to have your password reset, please ignore this message.</p>
<p>Sincerely,</p>
<br/>
<span>The Little Rascals</span>
</td>
</tr>
</table>
</body>
</html>
Dear <%= @user.login %>,
We have had a request to reset your password, please visit the following url:
<%= @url %>
If you did not request to have your password reset, please ignore this message.
Sincerely,
The Little Rascals
<html>
<head>
<title>Reset Password</title>
</head>
<body>
<table align="center" border="0" cellpadding="0" cellspacing="0" width="600">
<tr valign="top">
<td width="100%">
<span>Password Reset Successful<br/>
<br/></span>
<p>Dear <%= @user.login.camelcase %>,</p>
<p>You have successfully reset your password. Please save your new credentials:</p>
<ul>
<li>Username: <i><%= @user.login %></i></li>
<li>Password: <i><%= @user.password %></i></li>
</ul>
<p>Sincerely,</p>
<br/>
<span>The Little Rascals</span>
</td>
</tr>
</table>
</body>
</html>
Dear <%= @user.login %>,
You have successfully reset your password. Please save your new credentials:
Username: <%= @user.login %>
Password: <%= @user.password %>
Sincerely,
The Little Rascals
<html>
<head>
<title>Signup Notification</title>
</head>
<body>
<table align="center" border="0" cellpadding="0" cellspacing="0" width="600">
<tr valign="top">
<td width="100%">
<span>Your Account Has Been Created<br/>
<br/></span>
<p>Dear <%= @user.login.camelcase %>,</p>
<p>Welcome to <%= @opt_site_name %>! Your new account has been created for you. Please save your new credentials in a safe place:</p>
<ul>
<li>Username: <i><%= @user.login %></i></li>
<li>Password: <i><%= @user.password %></i></li>
</ul>
<p>In order to activate your account, you must visit the following URL:</p>
<p><%=h @url %></p>
<p>Sincerely,</p>
<br/>
<span>The Little Rascals</span>
</td>
</tr>
</table>
</body>
</html>
Your account has been created.
Username: <%=h @user.login %>
Password: <%=h @user.password %>
Visit this url to activate your account:
<%=h @url %>
Sincerely,
The Little Rascals
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment