Printing email

Printing email

am 22.04.2008 18:02:57 von Ken

Using mail($addr , $subject, $body);

When the email is printed, numerous blank pages print. Also the email has
many blank lines under the content.

How do I limit the email to content only?

Thanks.

Ken

Re: Printing email

am 22.04.2008 19:16:57 von hellsop

On Tue, 22 Apr 2008 11:02:57 -0500, Ken wrote:
> Using mail($addr , $subject, $body);
>
> When the email is printed, numerous blank pages print. Also the email has
> many blank lines under the content.
>
> How do I limit the email to content only?

Trim your $body, probably. Ain't a lot to go on here.

--
64. I will see a competent psychiatrist and get cured of all extremely
unusual phobias and bizarre compulsive habits which could prove to
be a disadvantage.
--Peter Anspach's list of things to do as an Evil Overlord

Re: Printing email

am 22.04.2008 19:57:25 von Ken

>Trim your $body, probably
The " is right after the last character in the $body. Do I need a character
to denote end of email?

>Ain't a lot to go on here
That's what I thought, too. But to my surprise, there are ten+ blank pages
after the text in both printing and the email.

My questions are:
1. Why the extra blank pages?
2. How do I eliminate them?

Ken




"Peter H. Coffin" wrote in message
news:slrng0s7c9.set.hellsop@abyss.ninehells.com...
> On Tue, 22 Apr 2008 11:02:57 -0500, Ken wrote:
>> Using mail($addr , $subject, $body);
>>
>> When the email is printed, numerous blank pages print. Also the email
>> has
>> many blank lines under the content.
>>
>> How do I limit the email to content only?
>
> Trim your $body, probably. Ain't a lot to go on here.
>
> --
> 64. I will see a competent psychiatrist and get cured of all extremely
> unusual phobias and bizarre compulsive habits which could prove to
> be a disadvantage.
> --Peter Anspach's list of things to do as an Evil Overlord

Re: Printing email

am 22.04.2008 20:17:38 von luiheidsgoeroe

On Tue, 22 Apr 2008 19:57:25 +0200, Ken wrote:
> "Peter H. Coffin" wrote in message
> news:slrng0s7c9.set.hellsop@abyss.ninehells.com...
>> On Tue, 22 Apr 2008 11:02:57 -0500, Ken wrote:
>>> Using mail($addr , $subject, $body);
>>>
>>> When the email is printed, numerous blank pages print. Also the email
>>> has
>>> many blank lines under the content.
>>>
>>> How do I limit the email to content only?
>>
>> Trim your $body, probably.
> The " is right after the last character in the $body. Do I need a
> character
> to denote end of email?

Nope.

>> Ain't a lot to go on here
> That's what I thought, too.

"Ain't a lot to go on here" meaning: we cannot say what is wrong without
the code, this is NOT usual behaviour.
--
Rik Wasmus

Re: Printing email

am 22.04.2008 20:58:20 von Ken

"Rik Wasmus" wrote in message
news:op.t90yfoq25bnjuv@metallium.lan...
> On Tue, 22 Apr 2008 19:57:25 +0200, Ken wrote:
>> "Peter H. Coffin" wrote in message
>> news:slrng0s7c9.set.hellsop@abyss.ninehells.com...
>>> On Tue, 22 Apr 2008 11:02:57 -0500, Ken wrote:
>>>> Using mail($addr , $subject, $body);
>>>>
>>>> When the email is printed, numerous blank pages print. Also the email
>>>> has
>>>> many blank lines under the content.
>>>>
>>>> How do I limit the email to content only?
>>>
>>> Trim your $body, probably.
>> The " is right after the last character in the $body. Do I need a
>> character
>> to denote end of email?
>
> Nope.
>
>>> Ain't a lot to go on here
>> That's what I thought, too.
>
> "Ain't a lot to go on here" meaning: we cannot say what is wrong without
> the code, this is NOT usual behaviour.
> --
> Rik Wasmus

The simiplied code

$body = " Application for Membership ..... \n\n Today's date
$date \n";

$addr = "name@domain.com, {$_SESSION['check_email']}";
$subjectF = "subject name";
mail($addr , $subjectF, $body);
header ('Location: http://domainname/file.php');

Re: Printing email

am 22.04.2008 21:01:02 von luiheidsgoeroe

On Tue, 22 Apr 2008 20:58:20 +0200, Ken wrote:

>
> "Rik Wasmus" wrote in message
> news:op.t90yfoq25bnjuv@metallium.lan...
>> On Tue, 22 Apr 2008 19:57:25 +0200, Ken wrote:
>>> "Peter H. Coffin" wrote in message
>>> news:slrng0s7c9.set.hellsop@abyss.ninehells.com...
>>>> On Tue, 22 Apr 2008 11:02:57 -0500, Ken wrote:
>>>>> Using mail($addr , $subject, $body);
>>>>>
>>>>> When the email is printed, numerous blank pages print. Also the =

>>>>> email
>>>>> has
>>>>> many blank lines under the content.
>>>>>
>>>>> How do I limit the email to content only?
>>>>
>>>> Trim your $body, probably.
>>> The " is right after the last character in the $body. Do I need a
>>> character
>>> to denote end of email?
>>
>> Nope.
>>
>>>> Ain't a lot to go on here
>>> That's what I thought, too.
>>
>> "Ain't a lot to go on here" meaning: we cannot say what is wrong with=
out
>> the code, this is NOT usual behaviour.
>
> The simiplied code
>
> $body =3D " Application for Membership ..... \n\n Today's d=
ate
> $date \n";
>
> $addr =3D "name@domain.com, {$_SESSION['check_email']}";

What's in $_SESSION['check_email']?

> $subjectF =3D "subject name";
> mail($addr , $subjectF, $body);

Does nothing weird like described here. Perhaps the NOT 'simiplied' code=
=

would server better...
-- =

Rik Wasmus

Re: Printing email

am 22.04.2008 21:26:58 von Paul Lautman

Ken wrote:
> "Rik Wasmus" wrote in message
> news:op.t90yfoq25bnjuv@metallium.lan...
>> On Tue, 22 Apr 2008 19:57:25 +0200, Ken wrote:
>>> "Peter H. Coffin" wrote in message
>>> news:slrng0s7c9.set.hellsop@abyss.ninehells.com...
>>>> On Tue, 22 Apr 2008 11:02:57 -0500, Ken wrote:
>>>>> Using mail($addr , $subject, $body);
>>>>>
>>>>> When the email is printed, numerous blank pages print. Also the
>>>>> email has
>>>>> many blank lines under the content.
>>>>>
>>>>> How do I limit the email to content only?
>>>>
>>>> Trim your $body, probably.
>>> The " is right after the last character in the $body. Do I need a
>>> character
>>> to denote end of email?
>>
>> Nope.
>>
>>>> Ain't a lot to go on here
>>> That's what I thought, too.
>>
>> "Ain't a lot to go on here" meaning: we cannot say what is wrong
>> without the code, this is NOT usual behaviour.
>> --
>> Rik Wasmus
>
> The simiplied code
>
> $body = " Application for Membership ..... \n\n Today's
> date $date \n";
>
> $addr = "name@domain.com, {$_SESSION['check_email']}";
> $subjectF = "subject name";
> mail($addr , $subjectF, $body);
> header ('Location: http://domainname/file.php');

in response to simiplied [SIC] code, we can only give simiplied [SIC]
answers. There must be something wrong. Is that simipli enough?

Re: Printing email

am 22.04.2008 21:28:01 von Ken

"Rik Wasmus" wrote in message
news:op.t900f0mp5bnjuv@metallium.lan...
On Tue, 22 Apr 2008 20:58:20 +0200, Ken wrote:

>
> "Rik Wasmus" wrote in message
> news:op.t90yfoq25bnjuv@metallium.lan...
>> On Tue, 22 Apr 2008 19:57:25 +0200, Ken wrote:
>>> "Peter H. Coffin" wrote in message
>>> news:slrng0s7c9.set.hellsop@abyss.ninehells.com...
>>>> On Tue, 22 Apr 2008 11:02:57 -0500, Ken wrote:
>>>>> Using mail($addr , $subject, $body);
>>>>>
>>>>> When the email is printed, numerous blank pages print. Also the
>>>>> email
>>>>> has
>>>>> many blank lines under the content.
>>>>>
>>>>> How do I limit the email to content only?
>>>>
>>>> Trim your $body, probably.
>>> The " is right after the last character in the $body. Do I need a
>>> character
>>> to denote end of email?
>>
>> Nope.
>>
>>>> Ain't a lot to go on here
>>> That's what I thought, too.
>>
>> "Ain't a lot to go on here" meaning: we cannot say what is wrong without
>> the code, this is NOT usual behaviour.
>
> The simplified code
>
> $body = " Application for Membership ..... \n\n Today's date
> $date \n";
>
> $addr = "name@domain.com, {$_SESSION['check_email']}";

What's in $_SESSION['check_email']?

> $subjectF = "subject name";
> mail($addr , $subjectF, $body);

Does nothing weird like described here. Perhaps the NOT 'simplified code
would server better...
--
Rik Wasmus

-----------------
I have two emailing on the same page

the first
> $body = " Application for Membership ..... \n\n Today's date
> $date \n";
> $addr = "name@domain.com, {$_SESSION['check_email']}";
> $subject = "subject name";
> mail($addr , $subject, $body);

The second:
> $body2 = " Different text";
> $addr = "name@domain.com, {$_SESSION['check_email']}";
> $subjectF = "subject name2";
> mail($addr , $subjectF, $bod2);

Could two mailing on the same page cause the problem?

>What's in $_SESSION['check_email']?
This is a session variable entered into a form several pages earlier. The
variable is carried among pages.

Ken

Re: Printing email

am 22.04.2008 21:47:26 von Ken

"Ken" wrote in message
news:480e3c40$0$20183$4c368faf@roadrunner.com...
>
> "Rik Wasmus" wrote in message
> news:op.t900f0mp5bnjuv@metallium.lan...
> On Tue, 22 Apr 2008 20:58:20 +0200, Ken wrote:
>
>>
>> "Rik Wasmus" wrote in message
>> news:op.t90yfoq25bnjuv@metallium.lan...
>>> On Tue, 22 Apr 2008 19:57:25 +0200, Ken wrote:
>>>> "Peter H. Coffin" wrote in message
>>>> news:slrng0s7c9.set.hellsop@abyss.ninehells.com...
>>>>> On Tue, 22 Apr 2008 11:02:57 -0500, Ken wrote:
>>>>>> Using mail($addr , $subject, $body);
>>>>>>
>>>>>> When the email is printed, numerous blank pages print. Also the
>>>>>> email
>>>>>> has
>>>>>> many blank lines under the content.
>>>>>>
>>>>>> How do I limit the email to content only?
>>>>>
>>>>> Trim your $body, probably.
>>>> The " is right after the last character in the $body. Do I need a
>>>> character
>>>> to denote end of email?
>>>
>>> Nope.
>>>
>>>>> Ain't a lot to go on here
>>>> That's what I thought, too.
>>>
>>> "Ain't a lot to go on here" meaning: we cannot say what is wrong without
>>> the code, this is NOT usual behaviour.
>>
>> The simplified code
>>
>> $body = " Application for Membership ..... \n\n Today's date
>> $date \n";
>>
>> $addr = "name@domain.com, {$_SESSION['check_email']}";
>
> What's in $_SESSION['check_email']?
>
>> $subjectF = "subject name";
>> mail($addr , $subjectF, $body);
>
> Does nothing weird like described here. Perhaps the NOT 'simplified code
> would server better...
> --
> Rik Wasmus
>
> -----------------
> I have two emailing on the same page
>
> the first
>> $body = " Application for Membership ..... \n\n Today's date
>> $date \n";
>> $addr = "name@domain.com, {$_SESSION['check_email']}";
>> $subject = "subject name";
>> mail($addr , $subject, $body);
>
> The second:
>> $body2 = " Different text";
>> $addr = "name@domain.com, {$_SESSION['check_email']}";
>> $subjectF = "subject name2";
>> mail($addr , $subjectF, $bod2);
>
> Could two mailing on the same page cause the problem?
>
>>What's in $_SESSION['check_email']?
> This is a session variable entered into a form several pages earlier. The
> variable is carried among pages.
>
> Ken
I tried one email on the page . Did not eliminate the blank lines.

You mentioned, this is not unusual.

What were the causes of the other instances of numerous blank lines in an
email.

Ken

Re: Printing email

am 22.04.2008 22:12:29 von luiheidsgoeroe

On Tue, 22 Apr 2008 21:47:26 +0200, Ken wrote:
>> I have two emailing on the same page
>>
>> the first
>>> $body =3D " Application for Membership ..... \n\n Today's=
date
>>> $date \n";
>>> $addr =3D "name@domain.com, {$_SESSION['check_email']}";
>>> $subject =3D "subject name";
>>> mail($addr , $subject, $body);
>>
>> The second:
>>> $body2 =3D " Different text";
>>> $addr =3D "name@domain.com, {$_SESSION['check_email']}";
>>> $subjectF =3D "subject name2";
>>> mail($addr , $subjectF, $bod2);
>>
>> Could two mailing on the same page cause the problem?
>>
>>> What's in $_SESSION['check_email']?
>> This is a session variable entered into a form several pages earlier.=
=

>> The
>> variable is carried among pages.
>>
>> Ken
> I tried one email on the page . Did not eliminate the blank lines.
>
> You mentioned, this is not unusual.

No, I mentioned this was not usual. As in 'does not happen normally'.

> What were the causes of the other instances of numerous blank lines in=
an
> email.

- wrong headers
- other values in data then you expect.
- faulty MTA

So, try this:
mail('youremailaddres@example.com','Subject',"Line with break on end\n")=
;

If this works, almost certainly there's something in $body or =

$_SESSION['check_email'] you don't expect, examine those variables =

carefully. If this also gives you faulty emails, please confirm with =

another emailclient to be certain it's not the client's fault, and if so=
, =

examine the source of the email.
-- =

Rik Wasmus

Re: Printing email

am 22.04.2008 22:20:39 von Ken

"Paul Lautman" wrote in message
news:676u8dF2njoq8U1@mid.individual.net...
> Ken wrote:
>> "Rik Wasmus" wrote in message
>> news:op.t90yfoq25bnjuv@metallium.lan...
>>> On Tue, 22 Apr 2008 19:57:25 +0200, Ken wrote:
>>>> "Peter H. Coffin" wrote in message
>>>> news:slrng0s7c9.set.hellsop@abyss.ninehells.com...
>>>>> On Tue, 22 Apr 2008 11:02:57 -0500, Ken wrote:
>>>>>> Using mail($addr , $subject, $body);
>>>>>>
>>>>>> When the email is printed, numerous blank pages print. Also the
>>>>>> email has
>>>>>> many blank lines under the content.
>>>>>>
>>>>>> How do I limit the email to content only?
>>>>>
>>>>> Trim your $body, probably.
>>>> The " is right after the last character in the $body. Do I need a
>>>> character
>>>> to denote end of email?
>>>
>>> Nope.
>>>
>>>>> Ain't a lot to go on here
>>>> That's what I thought, too.
>>>
>>> "Ain't a lot to go on here" meaning: we cannot say what is wrong
>>> without the code, this is NOT usual behaviour.
>>> --
>>> Rik Wasmus
>>
>> The simiplied code
>>
>> $body = " Application for Membership ..... \n\n Today's
>> date $date \n";
>>
>> $addr = "name@domain.com, {$_SESSION['check_email']}";
>> $subjectF = "subject name";
>> mail($addr , $subjectF, $body);
>> header ('Location: http://domainname/file.php');
>
> in response to simiplied [SIC] code, we can only give simiplied [SIC]
> answers. There must be something wrong. Is that simipli enough?
OK but what is wrong?

This code caused the same problem.

$body="the";
$addr = "namei@domain.com";
$subject = "subject";
mail($addr , $subject, $body);

Your thoughts.

Ken

Re: Printing email

am 22.04.2008 22:36:34 von Ken

"Rik Wasmus" wrote in message
news:op.t903q3cm5bnjuv@metallium.lan...
On Tue, 22 Apr 2008 21:47:26 +0200, Ken wrote:
>> I have two emailing on the same page
>>
>> the first
>>> $body = " Application for Membership ..... \n\n Today's date
>>> $date \n";
>>> $addr = "name@domain.com, {$_SESSION['check_email']}";
>>> $subject = "subject name";
>>> mail($addr , $subject, $body);
>>
>> The second:
>>> $body2 = " Different text";
>>> $addr = "name@domain.com, {$_SESSION['check_email']}";
>>> $subjectF = "subject name2";
>>> mail($addr , $subjectF, $bod2);
>>
>> Could two mailing on the same page cause the problem?
>>
>>> What's in $_SESSION['check_email']?
>> This is a session variable entered into a form several pages earlier.
>> The
>> variable is carried among pages.
>>
>> Ken
> I tried one email on the page . Did not eliminate the blank lines.
>
> You mentioned, this is not unusual.

No, I mentioned this was not usual. As in 'does not happen normally'.

> What were the causes of the other instances of numerous blank lines in an
> email.

- wrong headers
- other values in data then you expect.
- faulty MTA

So, try this:
mail('youremailaddres@example.com','Subject',"Line with break on end\n");

If this works, almost certainly there's something in $body or
$_SESSION['check_email'] you don't expect, examine those variables
carefully. If this also gives you faulty emails, please confirm with
another emailclient to be certain it's not the client's fault, and if so,
examine the source of the email.
--
Rik Wasmus

Rik
What is MTA?

Re: Printing email

am 22.04.2008 22:51:45 von Ken

"Rik Wasmus" wrote in message
news:op.t903q3cm5bnjuv@metallium.lan...
On Tue, 22 Apr 2008 21:47:26 +0200, Ken wrote:
>> I have two emailing on the same page
>>
>> the first
>>> $body = " Application for Membership ..... \n\n Today's date
>>> $date \n";
>>> $addr = "name@domain.com, {$_SESSION['check_email']}";
>>> $subject = "subject name";
>>> mail($addr , $subject, $body);
>>
>> The second:
>>> $body2 = " Different text";
>>> $addr = "name@domain.com, {$_SESSION['check_email']}";
>>> $subjectF = "subject name2";
>>> mail($addr , $subjectF, $bod2);
>>
>> Could two mailing on the same page cause the problem?
>>
>>> What's in $_SESSION['check_email']?
>> This is a session variable entered into a form several pages earlier.
>> The
>> variable is carried among pages.
>>
>> Ken
> I tried one email on the page . Did not eliminate the blank lines.
>
> You mentioned, this is not unusual.

No, I mentioned this was not usual. As in 'does not happen normally'.

> What were the causes of the other instances of numerous blank lines in an
> email.

- wrong headers
- other values in data then you expect.
- faulty MTA

So, try this:
mail('youremailaddres@example.com','Subject',"Line with break on end\n");

If this works, almost certainly there's something in $body or
$_SESSION['check_email'] you don't expect, examine those variables
carefully. If this also gives you faulty emails, please confirm with
another emailclient to be certain it's not the client's fault, and if so,
examine the source of the email.
--
Rik Wasmus

Rik,
I figured the problem out.

The reason for the extra lines: The text of the email does not end with a
period.

Look at your other emails. I found those with text ending in a period do
not have the extra lines.

Place a period after your signature.

Thanks for you help!

Ken

Re: Printing email

am 22.04.2008 22:59:28 von luiheidsgoeroe

On Tue, 22 Apr 2008 22:51:45 +0200, Ken wrote:
> I figured the problem out.
> The reason for the extra lines: The text of the email does not end with
> a period.
> Look at your other emails. I found those with text ending in a period do
> not have the extra lines.
> Place a period after your signature.

Change mail and/or news client now. An ending period is never ever needed,
if your client needs it, it is broken and should not be trusted.

Also, use an news client which:
- properly quotes
- possibly trims signatures, or do it yourself.

The combination on non compliance to both of those makes it quite
irritating for me to reply to you as everything below the correct sig
seperator is considered a signature and automatically trimmed.

If you're not willing to change, at least use OE Quotefix:
http://home.in.tum.de/~jain/software/oe-quotefix/
--
Rik Wasmus

Re: Printing email

am 23.04.2008 00:24:02 von Jerry Stuckle

Ken wrote:
> "Paul Lautman" wrote in message
> news:676u8dF2njoq8U1@mid.individual.net...
>> Ken wrote:
>>> "Rik Wasmus" wrote in message
>>> news:op.t90yfoq25bnjuv@metallium.lan...
>>>> On Tue, 22 Apr 2008 19:57:25 +0200, Ken wrote:
>>>>> "Peter H. Coffin" wrote in message
>>>>> news:slrng0s7c9.set.hellsop@abyss.ninehells.com...
>>>>>> On Tue, 22 Apr 2008 11:02:57 -0500, Ken wrote:
>>>>>>> Using mail($addr , $subject, $body);
>>>>>>>
>>>>>>> When the email is printed, numerous blank pages print. Also the
>>>>>>> email has
>>>>>>> many blank lines under the content.
>>>>>>>
>>>>>>> How do I limit the email to content only?
>>>>>> Trim your $body, probably.
>>>>> The " is right after the last character in the $body. Do I need a
>>>>> character
>>>>> to denote end of email?
>>>> Nope.
>>>>
>>>>>> Ain't a lot to go on here
>>>>> That's what I thought, too.
>>>> "Ain't a lot to go on here" meaning: we cannot say what is wrong
>>>> without the code, this is NOT usual behaviour.
>>>> --
>>>> Rik Wasmus
>>> The simiplied code
>>>
>>> $body = " Application for Membership ..... \n\n Today's
>>> date $date \n";
>>>
>>> $addr = "name@domain.com, {$_SESSION['check_email']}";
>>> $subjectF = "subject name";
>>> mail($addr , $subjectF, $body);
>>> header ('Location: http://domainname/file.php');
>> in response to simiplied [SIC] code, we can only give simiplied [SIC]
>> answers. There must be something wrong. Is that simipli enough?
> OK but what is wrong?
>
> This code caused the same problem.
>
> $body="the";
> $addr = "namei@domain.com";
> $subject = "subject";
> mail($addr , $subject, $body);
>
> Your thoughts.
>
> Ken
>
>
>

If that causes lots of extra lines, then you probably have a problem in
your mail program on the server. It shouldn't be doing that.

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================

Re: Printing email

am 23.04.2008 15:50:48 von hellsop

On Tue, 22 Apr 2008 15:20:39 -0500, Ken wrote:
>
> "Paul Lautman" wrote in message
> news:676u8dF2njoq8U1@mid.individual.net...
>> Ken wrote:
>>> "Rik Wasmus" wrote in message
>>> news:op.t90yfoq25bnjuv@metallium.lan...
>>>> On Tue, 22 Apr 2008 19:57:25 +0200, Ken wrote:
>>>>> "Peter H. Coffin" wrote in message
>>>>> news:slrng0s7c9.set.hellsop@abyss.ninehells.com...
>>>>>> On Tue, 22 Apr 2008 11:02:57 -0500, Ken wrote:
>>>>>>> Using mail($addr , $subject, $body);
>>>>>>>
>>>>>>> When the email is printed, numerous blank pages print. Also the
>>>>>>> email has
>>>>>>> many blank lines under the content.
>>>>>>>
>>>>>>> How do I limit the email to content only?
>>>>>>
>>>>>> Trim your $body, probably.
>>>>> The " is right after the last character in the $body. Do I need a
>>>>> character
>>>>> to denote end of email?
>>>>
>>>> Nope.
>>>>
>>>>>> Ain't a lot to go on here
>>>>> That's what I thought, too.
>>>>
>>>> "Ain't a lot to go on here" meaning: we cannot say what is wrong
>>>> without the code, this is NOT usual behaviour.
>>>> --
>>>> Rik Wasmus
>>>
>>> The simiplied code
>>>
>>> $body = " Application for Membership ..... \n\n Today's
>>> date $date \n";
>>>
>>> $addr = "name@domain.com, {$_SESSION['check_email']}";
>>> $subjectF = "subject name";
>>> mail($addr , $subjectF, $body);
>>> header ('Location: http://domainname/file.php');
>>
>> in response to simiplied [SIC] code, we can only give simiplied [SIC]
>> answers. There must be something wrong. Is that simipli enough?
> OK but what is wrong?
>
> This code caused the same problem.
>
> $body="the";
> $addr = "namei@domain.com";
> $subject = "subject";
> mail($addr , $subject, $body);
>
> Your thoughts.

On my handy test system,

$body="the";
$addr = "hellsop@ninehells.com";
$subject = "subject";
mail($addr , $subject, $body);
?>

results in

------------------------
From hellsop@ninehells.com Wed Apr 23 08:45:41 2008
Return-Path: hellsop@ninehells.com
X-Original-To: hellsop@ninehells.com
Delivered-To: hellsop@ninehells.com
Received: by abyss.ninehells.com (Postfix, from userid 1000)
id 8166712A63; Wed, 23 Apr 2008 08:45:41 -0500 (CDT)
To: hellsop@ninehells.com
Subject: subject
Message-Id: <20080423134541.8166712A63@abyss.ninehells.com>
Date: Wed, 23 Apr 2008 08:45:41 -0500 (CDT)
From: "Peter H. Coffin"
X-Bogosity: Ham, tests=bogofilter, spamicity=0.000004, version=1.0.3

the
------------------------

exactly. Try another mail client, one that can show you exactly what's
in the email. If that's okay, it's your printing system. If it's not
okay, it's your email system someplace, including such filters as you
may have placed on it. In any case, it's not a flaw in PHP generally,
nor in the code you've presented.

--
84. I will not have captives of one sex guarded by members of the opposite sex.
--Peter Anspach's list of things to do as an Evil Overlord