diff options
author | prashantsinalkar | 2018-10-23 17:07:36 +0530 |
---|---|---|
committer | prashantsinalkar | 2018-10-23 17:07:36 +0530 |
commit | 929af12fd96307ad1555ded38ddf2577b29832ad (patch) | |
tree | 571a0829dfcff4178f2fb70138a44835b62ec4e9 /settings.inc | |
parent | 978fa39e512c8fc9edce34bb9a714c1c99bbeee2 (diff) | |
download | osdag_workshop_booking-929af12fd96307ad1555ded38ddf2577b29832ad.tar.gz osdag_workshop_booking-929af12fd96307ad1555ded38ddf2577b29832ad.tar.bz2 osdag_workshop_booking-929af12fd96307ad1555ded38ddf2577b29832ad.zip |
added settings for email
Diffstat (limited to 'settings.inc')
-rwxr-xr-x | settings.inc | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/settings.inc b/settings.inc new file mode 100755 index 0000000..b1a7fb8 --- /dev/null +++ b/settings.inc @@ -0,0 +1,48 @@ +<?php +// $Id$ +function osdag_workshop_booking_settings_form($form, &$form_state) +{ + $form['from_email'] = array( + '#type' => 'textfield', + '#title' => t('Outgoing from email address From mail'), + '#description' => t('Email address to be display in the from field of all outgoing messages'), + '#size' => 50, + '#maxlength' => 255, + '#required' => TRUE, + '#default_value' => variable_get('osdag_workshop_booking_from_email', '') + ); + $form['cc_email'] = array( + '#type' => 'textfield', + '#title' => t('Notification emails CC'), + '#description' => t('A comma separated list of email addresses to receive notifications emails'), + '#size' => 50, + '#maxlength' => 255, + '#required' => TRUE, + '#default_value' => variable_get('osdag_workshop_booking_cc_emails', '') + ); + $form['bcc_email'] = array( + '#type' => 'textfield', + '#title' => t('Notification emails of BCC'), + '#description' => t('A comma separated list of email addresses to receive notifications emails'), + '#size' => 50, + '#maxlength' => 255, + '#required' => TRUE, + '#default_value' => variable_get('osdag_workshop_booking_bcc_emails', '') + ); + $form['submit'] = array( + '#type' => 'submit', + '#value' => t('Submit') + ); + return $form; +} +function osdag_workshop_booking_settings_form_validate($form, &$form_state) +{ + return; +} +function osdag_workshop_booking_settings_form_submit($form, &$form_state) +{ + variable_set('osdag_workshop_booking_cc_emails', $form_state['values']['cc_email']); + variable_set('osdag_workshop_booking_from_email', $form_state['values']['from_email']); + variable_set('osdag_workshop_booking_bcc_emails', $form_state['values']['bcc_email']); + drupal_set_message(t('Settings updated'), 'status'); +} |