MAIL_LINE_ENDINGS

  1. drupal
    1. 7 includes/mail.inc
    2. 8 core/includes/mail.inc

Auto-detect appropriate line endings for e-mails.

$conf['mail_line_endings'] will override this setting.

File

includes/mail.inc, line 13
API functions for processing and sending e-mail.

Code

define('MAIL_LINE_ENDINGS', isset($_SERVER['WINDIR']) || strpos($_SERVER['SERVER_SOFTWARE'], 'Win32') !== FALSE ? "\r\n" : "\n")
Login or register to post comments