PHP 8.3.4 Released!

imap_rfc822_write_address

(PHP 4, PHP 5, PHP 7, PHP 8)

imap_rfc822_write_addressReturns a properly formatted email address given the mailbox, host, and personal info

Description

imap_rfc822_write_address(string $mailbox, string $hostname, string $personal): string|false

Returns a properly formatted email address as defined in » RFC2822 given the needed information.

Parameters

mailbox

The mailbox name, see imap_open() for more information

Warning

Passing untrusted data to this parameter is insecure, unless imap.enable_insecure_rsh is disabled.

hostname

The email host part

personal

The name of the account owner

Return Values

Returns a string properly formatted email address as defined in » RFC2822, or false on failure.

Examples

Example #1 imap_rfc822_write_address() example

<?php
echo imap_rfc822_write_address("hartmut", "example.com", "Hartmut Holzgraefe");
?>

The above example will output:

Hartmut Holzgraefe <hartmut@example.com>

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top