| 1 |
<?php
|
| 2 |
// $Id: provision_welcome_mail.inc,v 1.1.2.1 2008/10/21 15:19:56 adrian Exp $
|
| 3 |
/**
|
| 4 |
* @file
|
| 5 |
* Define subject and body text for an email to the admin user created
|
| 6 |
* for a site.
|
| 7 |
*
|
| 8 |
* At the very least you will want to send them the one-time login url, !login_url.
|
| 9 |
*/
|
| 10 |
|
| 11 |
$mail = array();
|
| 12 |
|
| 13 |
$mail['subject'] = st('Your new site !site has been created.');
|
| 14 |
$mail['body'] = st("!username,
|
| 15 |
|
| 16 |
Your new site !site has been created.
|
| 17 |
|
| 18 |
You can now login to !site by clicking on this link or copying it into your browser:
|
| 19 |
|
| 20 |
!login_url
|
| 21 |
|
| 22 |
This is a one-time login, so it can be used only once.
|
| 23 |
|
| 24 |
Once you have logged in, you will be redirected to !edit_uri so you can change your password.");
|
| 25 |
|
| 26 |
?>
|