nadeemshafi9 Posted February 13, 2009 Share Posted February 13, 2009 Hello I am sending mail with pear and seting my return-path wich works fine. I now need to send custom headers but before is start can somne tell me what the -F in teh following heder means. <?php // Send $this_mail = Mail::factory("mail", array( 'Return-Path' => '-f ' . '[email protected], [email protected]' ) ); ?> is it ok to send custom headers like this ? <?php // Send $this_mail = Mail::factory("mail", array( 'Return-Path' => '-f ' . '[email protected], [email protected]', 'User-Id' => '3' ) ); ?> Thanks Link to comment https://forums.phpfreaks.com/topic/145060-pear-mail-custom-headers/ Share on other sites More sharing options...
nadeemshafi9 Posted February 13, 2009 Author Share Posted February 13, 2009 You can send custom headers in the Mail_Mime, whereas the Mail factory only lets you modify existing headers even though mime has the functionality of moding existing headers it dosent seem to work off the shelf. <?php // Extra headers $extra_headers['User-Id'] = $this_auth->user_id; // Headers $headers = $this_mail_mime->headers($extra_headers, true); ?> Link to comment https://forums.phpfreaks.com/topic/145060-pear-mail-custom-headers/#findComment-761195 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.