You are here

function oa_messages_build_notify_options in Open Atrium Core 7.2

Builds the notify options for a message.

1 call to oa_messages_build_notify_options()
oa_messages_create in modules/oa_messages/oa_messages.module
Helper function to create a specific message type Fills in the wrapper fields for group and section

File

modules/oa_messages/oa_messages.module, line 160

Code

function oa_messages_build_notify_options() {
  $options = array();
  $options['oa_email']['from'] = variable_get('site_mail', ini_get('sendmail_from'));
  return $options;
}