AnsPress_Email_Hooks::header()
Description #
Email header.
Source #
File: addons/free/email.php
public static function header() {
$header = '';
if ( ! $charset = get_bloginfo( 'charset' ) ) {
$charset = 'utf-8';
}
$header .= 'Content-type: text/plain; charset=' . $charset . "\r\n";
return $header;
}
Expand full source code Collapse full source code View on GitHub: addons/free/email.php:278
Add your comment