Jump to content

PEAR Mail Custom headers


nadeemshafi9

Recommended Posts

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

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);
?>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.