(PHP 4, PHP 5)
imap_rfc822_write_address — Returns a properly formatted email address given the mailbox, host, and personal info
Returns a properly formatted email address as defined in » RFC2822 given the needed information.
The mailbox name, see imap_open() for more information
The email host part
The name of the account owner
Returns a string properly formatted email address as defined in » RFC2822.
Example #1 imap_rfc822_write_address() example
<?phpecho imap_rfc822_write_address("hartmut", "example.com", "Hartmut Holzgraefe");?>
The above example will output:
Hartmut Holzgraefe <[email protected]>