>>>>> On Thu, 26 Jul 2001 09:03:16 -0000,
>>>>> Nico Weichbrod <[EMAIL PROTECTED]> (nw) writes:
nw> Hi,
nw> is there any way to format the message-body so i can use paragraphs in my
nw> vacation reply text. Unix syntax like '\n' do not work. The entire text is in
nw> only one line of the reply message. What can i do?
A string can span lines:
require "vacation";
vacation :days 7 :addresses "[EMAIL PROTECTED]" "
I will be out of the office from 5/10/2000 to 6/10/2000.
"
;
or better yet:
require "vacation";
vacation :days 7 :addresses "[EMAIL PROTECTED]" text:
I will be out of the office from 5/10/2000 to 6/10/2000.
.
;
--
Amos