You are here

function Messaging_Mail_Method::get_default_sender in Messaging 6.3

File

classes/messaging_method.class.inc, line 323
Drupal Messaging Framework - Send_Method class file

Class

Messaging_Mail_Method
Base class for mail sending methods

Code

function get_default_sender() {
  return array(
    'name' => variable_get('site_name', 'Drupal'),
    'from' => $this->default_from,
  );
}