function swiftmailer_is_mailbox_header in Swift Mailer 7
Checks whether a header is a mailbox header.
It is difficult to distinguish id, mailbox and path headers from each other as they all may very well contain the exact same value. This function simply checks whether the header key equals to 'Message-ID' to determine if the header is a path header.
Parameters
string $key: The header key.
string $value: The header value.
Return value
boolean TRUE if the provided header is a mailbox header, and otherwise FALSE.
See also
http://swift_mailer.org/docs/header-mailbox
1 call to swiftmailer_is_mailbox_header()
- swiftmailer_get_headertype in includes/
helpers/ conversion.inc - Determines the header type based on the a header key and value.
File
- includes/
helpers/ conversion.inc, line 206 - This file contains conversion functions.
Code
function swiftmailer_is_mailbox_header($key, $value) {
if (preg_match('/' . SWIFTMAILER_MAILBOX_PATTERN . '/', $value)) {
return TRUE;
}
else {
return FALSE;
}
}