Skip to content

Instantly share code, notes, and snippets.

@tim-peterson
Last active December 20, 2015 12:59
Show Gist options
  • Save tim-peterson/6135384 to your computer and use it in GitHub Desktop.
Save tim-peterson/6135384 to your computer and use it in GitHub Desktop.
link tracking issue
PASSWORD gives email.onarbor.com
<?$base_url=base_url();?>
<p>Somebody (hopefully you) requested a new password for the Onarbor account for <?=$email_address?>.
To reset the password, follow this link:<p>
<p> <a href="<?=$base_url?>account/updatePassword/<?=$account_token?>/<?=$account_date?>">
<?=$base_url?>account/updatePassword/<?=$account_token?>/<?=$account_date?></a></p>
<p>If you didn't request this email, you can safely ignore it.</p>
<p>Thanks,</p>
<p>The Onarbor team</p>
SIGNUP doesn't give email.onarbor.com
<?$base_url=base_url();?>
<p>Hey <?=$full_name?>, you recently signed up for Onarbor.</p>
<form action="<?=$base_url?>signup/confirm/<?=$account_token?>" method="POST">
<input type="hidden" name="email_address" value="<?=$email_address?>">
<input type="hidden" name="account_token" value="<?=$account_token?>">
<p>To complete your signup, please click this link to confirm your email address: </p>
<p>
<a href="<?=$base_url?>signup/confirm/<?=$account_token?>">
<?=$base_url?>signup/confirm/<?=$account_token?>
</a>
</p>
</form>
<br>
<p>Onarbor helps you make, review, and fund science &#38; art.</p>
<p>Thanks,</p>
<p>The Onarbor team</p>
NEW SIGNUP that gives email.onarbor.com link
changed signup to make like update password
<?$base_url=base_url();?>
<p>Hey <?=$full_name?>, you recently signed up for Onarbor.</p>
<p>To complete your signup, please click this link to confirm your email address: </p>
<p> <a href="<?=$base_url?>signup/confirm/<?=$account_token?>">
<?=$base_url?>signup/confirm/<?=$account_token?></a></p>
<p>Onarbor helps you make, review, and fund science &#38; art.</p>
<p>Thanks,</p>
<p>The Onarbor team</p>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment