function video_zencoder_mail_default in Video 6.4
Same name and namespace in other branches
- 6.5 plugins/video_zencoder/video_zencoder.module \video_zencoder_mail_default()
- 7 modules/video_zencoder/video_zencoder.module \video_zencoder_mail_default()
1 call to video_zencoder_mail_default()
- video_zencoder_mail in plugins/
video_zencoder/ video_zencoder.module - Implementation of hook_mail().
File
- plugins/
video_zencoder/ video_zencoder.module, line 153
Code
function video_zencoder_mail_default($params) {
return t('Welcome to Zencoder for Drupal
-------------------------------
Your account has been created and is ready to start processing.
Your account details are as below.
E-mail address (login): @email
API Key : @api_key
Password : @password
* Login URL: https://app.zencoder.com/login
You can get help at the following places:
* Our chat room at http://zencoder.com/chat
* Customer forums at https://help.zencoder.com/forums
* The help desk at https://help.zencoder.com/tickets/new
We\'d love to hear from you. Let us know how we can help. Thanks!
Thanks,
-Zencoder for Drupal Team', array(
'@api_key' => $params['api_key'],
'@password' => $params['password'],
));
}