| 1 | <?php |
||
| 5 | class RegistrationSubscriptionSender extends SubscriptionSender |
||
| 6 | { |
||
| 7 | |||
| 8 | /** |
||
| 9 | * Send a notify mail on new registration |
||
| 10 | * |
||
| 11 | * @param string $login login name of the new user |
||
| 12 | * @param string $fullname full name of the new user |
||
| 13 | * @param string $email email address of the new user |
||
| 14 | * |
||
| 15 | * @return bool true if a mail was sent |
||
| 16 | * @author Andreas Gohr <[email protected]> |
||
| 17 | * |
||
| 18 | */ |
||
| 19 | public function sendRegister($login, $fullname, $email) |
||
| 40 | } |
||
| 41 |