function hosting_client_mail in Hosting 6.2
Same name and namespace in other branches
- 7.4 client/hosting_client.module \hosting_client_mail()
- 7.3 client/hosting_client.module \hosting_client_mail()
Implementation of hook_mail().
File
- client/
hosting_client.module, line 384
Code
function hosting_client_mail($key, &$message, $params) {
switch ($key) {
case 'hosting-client-register-welcome':
$message['subject'] = _hosting_client_mail_text('welcome_subject', $params);
$message['body'] = _hosting_client_mail_text('welcome_body', $params);
break;
}
}