Re: Perl Email and WuFoo Forms.

2018-10-04 Thread Shlomi Fish
Hi James, On Tue, 2 Oct 2018 14:18:35 +0100 James Kerwin wrote: > Hi All, > > I have a Perl script that pulls in some information, generates an email, > sends the email to a person and provides a URL to a WuFoo form. This URL > contains the information to populate most fields in the form and

Re: Perl Email and WuFoo Forms.

2018-10-02 Thread Илья Рассадин
Hi! You can set up javascript handler for the form and submit it automatically if all fields are filled. On 02/10/2018 16:18, James Kerwin wrote: Hi All, I have a Perl script that pulls in some information, generates an email, sends the email to a person and provides a URL to a WuFoo

RE: perl email

2002-06-26 Thread Shishir K. Singh
I have a perl scipt that emails certain information to me. I would like a certain line to be in bold or a different color when it is emailed. Is there a way to do this? Ernest P. Tucker II Network Technician Madison Management Area Charter Communications I can get up at nine and be rested,

RE: perl email

2002-06-26 Thread Timothy Johnson
I'd recommend sending it in html mail. -Original Message- From: Tucker, Ernie [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 26, 2002 10:32 AM To: [EMAIL PROTECTED] Subject: perl email I have a perl scipt that emails certain information to me. I would like a certain line to be in

RE: perl email

2002-06-26 Thread Tucker, Ernie
how? -Original Message- From: Timothy Johnson [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 26, 2002 12:38 PM To: 'Tucker, Ernie'; [EMAIL PROTECTED] Subject: RE: perl email I'd recommend sending it in html mail. -Original Message- From: Tucker, Ernie [mailto:[EMAIL

RE: perl email

2002-06-26 Thread Timothy Johnson
html pHi/p pThis is my normal line./p pbThis is my bold line./b/p pBye./p /html -Original Message- From: Tucker, Ernie [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 26, 2002 10:38 AM To: 'Timothy Johnson'; Tucker, Ernie; [EMAIL PROTECTED] Subject: RE: perl email how

RE: perl email

2002-06-26 Thread Shishir K. Singh
Include this line in the header: Content-Type: text/html And then just write out the rest as simple HTML. It's been a while since I've done it, but if you send it like this, I think it should work. From:[EMAIL PROTECTED] To:[EMAIL PROTECTED] Subject:HTML Mail content-type: text/html

Re: perl email

2002-06-26 Thread David T-G
Ernie -- ...and then Tucker, Ernie said... % % I have a perl scipt that emails certain information to me. I would like a % certain line to be in bold or a different color when it is emailed. Is there % a way to do this? There are lots of ways. In fact, there are as many ways as email clients,

RE: perl email

2002-06-26 Thread Timothy Johnson
. -Original Message- From: Shishir K. Singh [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 26, 2002 10:47 AM To: Timothy Johnson; Tucker, Ernie; [EMAIL PROTECTED] Subject: RE: perl email Include this line in the header: Content-Type: text/html And then just write out the rest as simple

RE: perl email

2002-06-26 Thread Kipp, James
What about the Color ?? why not learn how to write html ? http://www.google.com/search?hl=enie=UTF-8oe=UTF8q=html+tutorialsbtnG=Go ogle+Search -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: perl email

2002-06-26 Thread Shishir K. Singh
What about the Color ?? why not learn how to write html ? http://www.google.com/search?hl=enie=UTF-8oe=UTF8q=html+tutorialsbtnG=Google+Search Honestly...I have always dreaded HTML with all those tags!! Makes my head spin:). But then there's no way out of it:(. -- To unsubscribe,

RE: perl email

2002-06-26 Thread Kipp, James
What about the Color ?? why not learn how to write html ? http://www.google.com/search?hl=enie=UTF-8oe=UTF8q=html+tu torialsbtnG=Google+Search Honestly...I have always dreaded HTML with all those tags!! Makes my head spin:). But then there's no way out of it:(. Oh, me too. But it does

RE: perl email

2002-06-26 Thread Timothy Johnson
: perl email What about the Color ?? why not learn how to write html ? http://www.google.com/search?hl=enie=UTF-8oe=UTF8q=html+tutorialsbtnG=G oogle+Search Honestly...I have always dreaded HTML with all those tags!! Makes my head spin:). But then there's no way out

RE: perl email

2002-06-26 Thread Tucker, Ernie
get up at six and be President. ~ Jimmy Carter, 39th President of the United States -Original Message- From: Timothy Johnson [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 26, 2002 12:44 PM To: 'Tucker, Ernie'; Timothy Johnson; [EMAIL PROTECTED] Subject: RE: perl email Include

Re: perl email

2002-06-26 Thread David T-G
Ernie -- While I still say it's the WRONG WAY to do it, here's what you need to know for this example. ...and then Tucker, Ernie said... % % This did not work . What am I doing wrong? % % open(MAIL,| $smail); % print MAIL From: etucker\n; %

RE: perl email

2002-06-26 Thread Timothy Johnson
To: 'Timothy Johnson'; Tucker, Ernie; [EMAIL PROTECTED] Subject: RE: perl email This did not work . What am I doing wrong? open(MAIL,| $smail); print MAIL From: etucker\n; print MAIL To: $ubr_info{'email'}\n; print MAIL Subject

RE: perl email

2002-06-26 Thread Janek Schleicher
Timothy Johnson wrote at Wed, 26 Jun 2002 19:43:52 +0200: Include this line in the header: Content-Type: text/html ... From:[EMAIL PROTECTED] To:[EMAIL PROTECTED] Subject:HTML Mail content-type: text/html ^ ^ But take care to Up/Lower-Case-Writing. Of course write it

RE: perl email

2002-06-26 Thread Tucker, Ernie
, 39th President of the United States -Original Message- From: Timothy Johnson [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 26, 2002 1:21 PM To: 'Tucker, Ernie'; Timothy Johnson; [EMAIL PROTECTED] Subject: RE: perl email Well, I'm not sure how $smail works, but offhand I'd say