I'm developing a web based email application for my website, and right now I'm working on getting on the "read" portion up and working. When I try to have it display who sent the email, if it has a persons name, it uses that (i.e. "Luie"). I have been using the following, and changing to to other values doesn't seem to matter:
$mailHeader = @imap_headerinf o($conn, $i)
$mailHeader->reply_toaddres s
Using reply_to only gives me "array", and I haven't been able to break it down properly yet.
Point of reference: [HTML]http://us3.php.net/manual/en/function.imap-headerinfo.php[/HTML]
$mailHeader = @imap_headerinf o($conn, $i)
$mailHeader->reply_toaddres s
Using reply_to only gives me "array", and I haven't been able to break it down properly yet.
Point of reference: [HTML]http://us3.php.net/manual/en/function.imap-headerinfo.php[/HTML]
Comment