You are here

function webform_email_html_capable in Webform 6.3

Same name and namespace in other branches
  1. 7.3 webform.module \webform_email_html_capable()

Check if any available HTML mail handlers are available for Webform to use.

3 calls to webform_email_html_capable()
webform_admin_settings in includes/webform.admin.inc
Menu callback for admin/settings/webform.
webform_email_edit_form in includes/webform.emails.inc
Form for configuring an e-mail setting and template.
webform_submission_send_mail in includes/webform.submissions.inc
Send related e-mails related to a submission.

File

./webform.module, line 3615

Code

function webform_email_html_capable() {

  // The D7 version of this function is much more capable. This function exists
  // as a wrapper for consistency in the rest of Webform.
  return module_exists('mimemail');
}