Re: [PHP] email.. (check this one out!)

2001-02-14 Thread FredrikAT

I explained my problem badly in the last message...
What I want to send is written without br and \n...

I want to set like a column width or something but without using HTML in
my email...

Anyone?

""FredrikAT"" [EMAIL PROTECTED] skrev i melding
96eu04$uef$[EMAIL PROTECTED]">news:96eu04$uef$[EMAIL PROTECTED]...
 Hi!

 I want to send a email usin' email() (plain text!), but I have a problem.

 What i want to send!
 $email_body = "This is just nothing, This is just nothing, This is just
 nothing, This is just nothing, This is just nothing, This is just nothing,
 This is just nothing, This is just nothing, This is just nothing, This is
 just nothing, This is just nothing, This is just nothing, This is just
 nothing, This is just nothing, This is just nothing, This is just nothing,
 This is just nothing, This is just nothing, This is just nothing, This is
 just nothing, This is just nothing, This is just nothing, This is just
 nothing, This is just nothing, ";

 I want to output it something like this:
 This is just nothing, This is just nothing, This is just nothing, This is
 just nothing,
 This is just nothing, This is just nothing, This is just nothing, This is
 just nothing,
 This is just nothing, This is just nothing, This is just nothing, This is
 just nothing,
 This is just nothing, This is just nothing, This is just nothing, This is
 just nothing,

 (Can I do that without using HTML? Is there a php-function to set width?)

 -
 Fredrik A. Takle
 [EMAIL PROTECTED]




 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 To contact the list administrators, e-mail: [EMAIL PROTECTED]




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




RE: [PHP] email.. (check this one out!)

2001-02-14 Thread Balak, Frank

use a \n (newline character) in your string where you want the break.

Frank
--
Franklin J. Balak Jr.
Quality Assurance Data Analyst
Brown Printing Company
Waseca Division
Waseca, MN. 56093
Voice: 507-835-0253
Fax: 507-835-0293
-- 

-Original Message-
From: FredrikAT [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, February 14, 2001 15:45
To: [EMAIL PROTECTED]
Subject: [PHP] email.. (check this one out!)


Hi!

I want to send a email usin' email() (plain text!), but I have a problem.

What i want to send!
$email_body = "This is just nothing, This is just nothing, This is just
nothing, This is just nothing, This is just nothing, This is just nothing,
This is just nothing, This is just nothing, This is just nothing, This is
just nothing, This is just nothing, This is just nothing, This is just
nothing, This is just nothing, This is just nothing, This is just nothing,
This is just nothing, This is just nothing, This is just nothing, This is
just nothing, This is just nothing, This is just nothing, This is just
nothing, This is just nothing, ";

I want to output it something like this:
This is just nothing, This is just nothing, This is just nothing, This is
just nothing,
This is just nothing, This is just nothing, This is just nothing, This is
just nothing,
This is just nothing, This is just nothing, This is just nothing, This is
just nothing,
This is just nothing, This is just nothing, This is just nothing, This is
just nothing,

(Can I do that without using HTML? Is there a php-function to set width?)

-
Fredrik A. Takle
[EMAIL PROTECTED]




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] email.. (check this one out!)

2001-02-14 Thread Scott Mebberson

Try to write some substr loop thats get the line and splits it up into 100
words then concenates all of the value you split with a \n in between


""FredrikAT"" [EMAIL PROTECTED] wrote in message
96eu04$uef$[EMAIL PROTECTED]">news:96eu04$uef$[EMAIL PROTECTED]...
 Hi!

 I want to send a email usin' email() (plain text!), but I have a problem.

 What i want to send!
 $email_body = "This is just nothing, This is just nothing, This is just
 nothing, This is just nothing, This is just nothing, This is just nothing,
 This is just nothing, This is just nothing, This is just nothing, This is
 just nothing, This is just nothing, This is just nothing, This is just
 nothing, This is just nothing, This is just nothing, This is just nothing,
 This is just nothing, This is just nothing, This is just nothing, This is
 just nothing, This is just nothing, This is just nothing, This is just
 nothing, This is just nothing, ";

 I want to output it something like this:
 This is just nothing, This is just nothing, This is just nothing, This is
 just nothing,
 This is just nothing, This is just nothing, This is just nothing, This is
 just nothing,
 This is just nothing, This is just nothing, This is just nothing, This is
 just nothing,
 This is just nothing, This is just nothing, This is just nothing, This is
 just nothing,

 (Can I do that without using HTML? Is there a php-function to set width?)

 -
 Fredrik A. Takle
 [EMAIL PROTECTED]




 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 To contact the list administrators, e-mail: [EMAIL PROTECTED]




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]