Re: [PHP] Piping Mime String to Metamail Fails -- Solution

2001-07-18 Thread Jeff Hill
Don Read wrote: > > On 13-Jul-01 Jeff Hill wrote: > > Don Read wrote: > >> On 13-Jul-01 Jeff Hill wrote: > >> > Don Read wrote: > >> >> On 13-Jul-01 Jeff Hill wrote: > >> >> > I've tried everything I can to pipe a string with mime content to > >> >> > metamail, but it fails in every variation of:

Re: [PHP] Piping Mime String to Metamail Fails

2001-07-13 Thread Don Read
On 13-Jul-01 Jeff Hill wrote: > Don Read wrote: >> On 13-Jul-01 Jeff Hill wrote: >> > Don Read wrote: >> >> On 13-Jul-01 Jeff Hill wrote: >> >> > I've tried everything I can to pipe a string with mime content to >> >> > metamail, but it fails in every variation of: >> >> > >> >> > exec("echo $mim

Re: [PHP] Piping Mime String to Metamail Fails

2001-07-13 Thread Hank Marquardt
www.php.net/popen ? ... or am I missing something? On Fri, Jul 13, 2001 at 07:52:51PM -0400, Jeff Hill wrote: > Don Read wrote: > > On 13-Jul-01 Jeff Hill wrote: > > > Don Read wrote: > > >> On 13-Jul-01 Jeff Hill wrote: > > >> > I've tried everything I can to pipe a string with mime content to >

Re: [PHP] Piping Mime String to Metamail Fails

2001-07-13 Thread Jeff Hill
Don Read wrote: > On 13-Jul-01 Jeff Hill wrote: > > Don Read wrote: > >> On 13-Jul-01 Jeff Hill wrote: > >> > I've tried everything I can to pipe a string with mime content to > >> > metamail, but it fails in every variation of: > >> > > >> > exec("echo $mime_string | /usr/bin/metamail -d -q -r -w

Re: [PHP] Piping Mime String to Metamail Fails

2001-07-13 Thread Don Read
On 13-Jul-01 Jeff Hill wrote: > Don Read wrote: >> On 13-Jul-01 Jeff Hill wrote: >> > I've tried everything I can to pipe a string with mime content to >> > metamail, but it fails in every variation of: >> > >> > exec("echo $mime_string | /usr/bin/metamail -d -q -r -w -x -y ", >> > $met_res) ; >>

Re: [PHP] Piping Mime String to Metamail Fails

2001-07-13 Thread Jeff Hill
Don Read wrote: > On 13-Jul-01 Jeff Hill wrote: > > I've tried everything I can to pipe a string with mime content to > > metamail, but it fails in every variation of: > > > > exec("echo $mime_string | /usr/bin/metamail -d -q -r -w -x -y ", > > $met_res) ; > > what about "/bin/echo ..." Nope, b

RE: [PHP] Piping Mime String to Metamail Fails

2001-07-13 Thread Don Read
` On 13-Jul-01 Jeff Hill wrote: > I've tried everything I can to pipe a string with mime content to > metamail, but it fails in every variation of: > > exec("echo $mime_string | /usr/bin/metamail -d -q -r -w -x -y ", > $met_res) ; > what about "/bin/echo ..." Regards, -- Don Read

[PHP] Piping Mime String to Metamail Fails

2001-07-13 Thread Jeff Hill
I've tried everything I can to pipe a string with mime content to metamail, but it fails in every variation of: exec("echo $mime_string | /usr/bin/metamail -d -q -r -w -x -y ", $met_res) ; I can successfully write the mime string to a tmp file, and then: exec(" cat /tmp/mime_mail | /usr