You are here

function video_zencoder_mail_default in Video 7

Same name and namespace in other branches
  1. 6.5 plugins/video_zencoder/video_zencoder.module \video_zencoder_mail_default()
  2. 6.4 plugins/video_zencoder/video_zencoder.module \video_zencoder_mail_default()
1 call to video_zencoder_mail_default()
video_zencoder_mail in modules/video_zencoder/video_zencoder.module
Implementation of hook_mail().

File

modules/video_zencoder/video_zencoder.module, line 118
Provides wrapper functions for the s3 amazon webservices. @todo

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.

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'],
  ));
}