You are here

function uc_notify_headers in Ubercart 5

Return the headers for the notification emails.

3 calls to uc_notify_headers()
uc_notify_checkout in uc_notify/uc_notify.module
Send new order confirmation e-mail to customer and/or administrator.
uc_notify_order_update in uc_notify/uc_notify.module
_role_email_user in uc_roles/uc_roles.module
Function sends a specified message to a user regarding role status

File

uc_notify/uc_notify.module, line 302
Handles configuration and execution of email notifications.

Code

function uc_notify_headers($extras = array()) {
  $extras = $extras + array(
    'Content-Type' => 'text/html; charset=UTF-8; format=flowed',
  );
  return $extras;
}