function commerce_billy_mail_install in Commerce Billy Mail 7
Implements hook_install().
File
- ./
commerce_billy_mail.install, line 11 - Installation functions for commerce_billy_mail
Code
function commerce_billy_mail_install() {
// Set general settings.
variable_set('commerce_billy_mail_attach_pdf_invoice', module_exists('commerce_billy_pdf invoice'));
variable_set('commerce_billy_mail_from', NULL);
variable_set('commerce_billy_mail_cc', '');
variable_set('commerce_billy_mail_bcc', '');
variable_set('commerce_billy_mail_subject', t('Your invoice.'));
variable_set('commerce_billy_mail_body', t('Find your invoice attached.'));
variable_set('commerce_billy_mail_plaintext', 'FALSE');
}