RE: Changing Subject color using MIME::Lite

2010-08-23 Thread Brian Raven
From: perl-win32-users-boun...@listserv.activestate.com [mailto:perl-win32-users-boun...@listserv.activestate.com] On Behalf Of A F Sent: 22 August 2010 18:31 To: Howard Tanner Cc: perl-win32-users@listserv.ActiveState.com Subject: Re: Changing Subject color using MIME::Lite Is there any other

Re: Changing Subject color using MIME::Lite

2010-08-22 Thread Jenda Krynicky
From: A F perl95...@yahoo.com Hi All, Is there a way to make the subject (not the body) of the email sent by MIME::Lite in different color like red or something? sub sendmail {    my ($to,$cc,$subject,$data) = @_;  my $msg = MIME::Lite-new(  From ='$from,  To =$to,  

Re: Changing Subject color using MIME::Lite

2010-08-22 Thread A F
Is there any other mail module that allows that?  From: Howard Tanner tan...@optonline.net To: A F perl95...@yahoo.com Sent: Fri, August 20, 2010 2:13:30 PM Subject: RE: Changing Subject color using MIME::Lite No. You can’t change the color of the subject

RE: Changing Subject color using MIME::Lite

2010-08-22 Thread Howard Tanner
-users@listserv.ActiveState.com Subject: Re: Changing Subject color using MIME::Lite Is there any other mail module that allows that? _ From: Howard Tanner tan...@optonline.net To: A F perl95...@yahoo.com Sent: Fri, August 20, 2010 2:13:30 PM Subject: RE: Changing Subject color using

Re: (no subject)

2005-09-14 Thread Sisyphus
- Original Message - From: Sergey Cherniyenko S use warnings S use constant VALUE = foo(); S print VALUE, \n; # print 42 S sub foo {return 42} S But all that produces is (as is to be expected): S Undefined subroutine main::foo called at try.pl line 2. S BEGIN failed--compilation

Re: (no subject)

2005-09-14 Thread $Bill Luebkert
Sisyphus wrote: I'm a little puzzled, however. In 'perldoc constant' I see: -- quote -- As with all use directives, defining a constant happens at compile time. -- end quote -- It seems to me, therefore, that foo() is being called and evaluated at compile-time. Is that so ? I thought

Re: (no subject)

2005-08-02 Thread Alexander Apprich
Hi Jamie, Jaime Teng wrote: In WinXP, we can open Task Manager and specify application's priority. From within a perl script, is there a way for my script to force window to assign a higher/lower priority? If so, how? have a look at Win32::Process module. This provides you access to a

Re: (no subject)

2005-08-02 Thread Sisyphus
- Original Message - From: Jaime Teng [EMAIL PROTECTED] To: perl-win32-users@listserv.ActiveState.com Sent: Tuesday, August 02, 2005 1:00 PM Subject: (no subject) In WinXP, we can open Task Manager and specify application's priority. From within a perl script, is there a way for my

Re: (no subject)

2005-08-02 Thread wwangbigpond.net.au
Jaime Teng [EMAIL PROTECTED] wrote: In WinXP, we can open Task Manager and specify application's priority. From within a perl script, is there a way for my script to force window to assign a higher/lower priority? If so, how? bring up task manager and right click on process you

Re: (no subject)

2005-06-12 Thread A B
print Pragma: no-cache\n; print Cache-Control: no-cache\n; print Content-type: text/html,\n\n; --- Jerry Kassebaum [EMAIL PROTECTED] wrote: The solution was to put the following in the JavaScript code TWICE, in the usual spot AND as the last thing before the /HTML tag. HEAD META

RE: (no subject)

2005-03-04 Thread John Serink
It doesn't cause any problem But you 'may' want to wait till your threads are done You can either detach or join to do so. Cheers, John -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Sergey Cherniyenko Sent: Friday, March 04, 2005 3:36 PM

RE: (no subject)

2005-03-04 Thread Peter Guzis
Replace $ftp-type ("A") with $ftp-binary. -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]On Behalf Of Ted YuSent: Friday, March 04, 2005 2:44 PMTo: perl-win32-users@listserv.ActiveState.comSubject: (no subject) Hi there: I'm having a serious

RE: (no subject)

2004-03-09 Thread Anderson, Mark (Service Delivery)
where Panel Item = $facia_panel_item and where Panel Sub-Item = $Data{\Window\}; This needs to be ...yourSQL.. WHERE [Panel Item]=$facia_panel_item AND [Panel Sub-Item]= . $Data{'Window'} However, this doesn't really handle quoting very well so you should use PLACEHOLDERS... then you can

RE: (no subject)

2003-10-16 Thread Moon, John
tim-toady ... :) jwm -Original Message- From: Lee Goddard [mailto:[EMAIL PROTECTED] Sent: October 16, 2003 10:59 To: Perl Win32 Users (E-mail) Subject: (no subject) Has anyone any idea why this might appear in some perl code? warn ${line}; Why not just $line? Thanks for

RE: (no subject)

2003-10-16 Thread Lee Goddard
| Lee Goddard wrote: | | Has anyone any idea why this might appear | in some perl code? | | warn ${line}; | | Why not just $line? | | Hi Lee. | | No reason, except that it may be site coding standards? Turns out the guy thought it was faster for string interpolation. He misread

RE: (no subject)

2003-09-09 Thread John Serink
Buy a book or go to one of the tutorial sites. Use 'perl tutorial' as a search term in google. -Original Message-From: Hamad alkhalaf [mailto:[EMAIL PROTECTED]Sent: Monday, September 08, 2003 5:50 AMTo: [EMAIL PROTECTED]Subject: (no subject) hi, i was woundering if any

Re: NET:SMTP Subject Method

2003-08-01 Thread Trevor Joerges [SendMIME Software]
If your just looking for basic e-mail subject then add the folowing line after the datasend(To line: $smtp-datasend(Subject: $subject\n); Oops - and of course don't forget to define $subject somewhere before this. my $subject = Perl rules!; If your looking for more control look at some of the

RE: (no subject)

2003-03-20 Thread csaba . raduly
On 20/03/2003 12:12:27 JamesTillman wrote: -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, March 20, 2003 4:34 AM Cc: [EMAIL PROTECTED] Subject: RE: (no subject) Try server\\new\$ Don't. Try '\\server\new$' if you need to give

RE: (no subject)

2003-03-19 Thread JamesTillman
Try server\\new\$ In perl you escape meta-characters with backslashes. Not much fun when you discover that Win32 just loves backslashes! jpt -Original Message- From: Tim Straub [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 19, 2003 7:10 AM To: [EMAIL PROTECTED] Subject:

RE: (no subject)

2003-03-19 Thread Gerber, Christopher J
Tim, AFAIK, the mkdir command can only make subdirectories, not new shared folders. Making shares is covered very well in Roth's Win32 Perl Programming, pages 70-78. To create a share, take a look at Win32::NetResource::NetShareAdd or Win32::Lanman::NetShareAdd. Here's a sample: use

RE: RE: (no subject)

2003-03-19 Thread Tim Straub
Thema RE: (no subject

RE: (no subject)

2002-12-10 Thread Beckett Richard-qswi266
Pardon? R. -Original Message- From: harsha reddy [mailto:[EMAIL PROTECTED]] Sent: 10 December 2002 14:32 To: [EMAIL PROTECTED] Subject: (no subject) __ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up

RE: (no subject)

2002-04-11 Thread Tillman, James
I've tried perlcc. It's not what you want. It doesn't work well at all on Win32 platforms and doesn't hold a candle to Perl2EXE or ActiveState's PerlApp. Perhaps when Parrot is finished it will be usable. jpt -Original Message- From: Kyle Payne [mailto:[EMAIL PROTECTED]] Sent:

RE: (no subject)

2002-04-11 Thread Martin Moss
To: '[EMAIL PROTECTED]'; Perl User (E-mail) Subject: RE: (no subject) I've tried perlcc. It's not what you want. It doesn't work well at all on Win32 platforms and doesn't hold a candle to Perl2EXE or ActiveState's PerlApp. Perhaps when Parrot is finished it will be usable. jpt -Original

Re: (no subject)

2002-01-25 Thread Glenn Linderman
Scott Campbell wrote: -style = WS_VSCROLL, I've heard of -addstyle, which adds to styles, rather than replacement, which is what -style does. There is also -remstyle, to remove a style. And -addexstyle, and -remexstyle. Have fun. -- Glenn = Due to the current economic

RE: (no subject) - Please always use subject line

2002-01-24 Thread Brown, Bobby (US - Hermitage)
It is most helpful I would think to all if everyone would make sure a proper subject line is used to describe the topic of e-mails. Thanks _ Bobby Brown Security Analyst Deloitte Touche -Original Message- From: Jürgen Beckedahl

RE: (no subject)

2002-01-21 Thread Ron Hartikka
try $counter-update; after $counter-configure(-text=$i); My guess is you are going to want to look at Tk's 'after' method. -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of robozSent: Monday, January 21, 2002 11:01 AMTo: [EMAIL

Re: (no subject)

2001-12-12 Thread Simon Oliver
Does this have anything to do with perl? -- Simon Oliver ___ Perl-Win32-Users mailing list [EMAIL PROTECTED] http://listserv.ActiveState.com/mailman/listinfo/perl-win32-users

RE: (no subject)

2001-06-20 Thread Lee Goddard
Well...printing it won't help much, but send us your code and maybe we can help. In the meantime: # In file named Book.pm package Book; our $VERSION=0.01; sub new { my $class = shift; my $self = {}; # Or other data struct bless $self, $class; } sub display { my $self = shift; print

RE: (no subject)

2001-06-02 Thread Lee Goddard
Man, unsubscribe yourself! Please! -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Mustafa AttariSent: 02 June 2001 05:29To: [EMAIL PROTECTED]Subject: (no subject) PLEASE UNSUBSCRIBE ME FROM THE LIST REGARDS

Re: Re: (no subject)

2001-06-02 Thread Mark Bergeron
By ALL MEANS!! -Original Message- From: Lee Goddard[EMAIL PROTECTED] To: Mustafa Attari[EMAIL PROTECTED], [EMAIL PROTECTED] Date: Sat Jun 02 02:24:52 PDT 2001 Subject: Re: (no subject) Man, unsubscribe yourself! Please! -Original Message- From: [EMAIL PROTECTED] [mailto

Port Scanning (was RE: (no subject))

2001-05-31 Thread Lee Goddard
Please check the archive of perl-win32-users : this was asked and answered yesterday! Please don't cross post to so many groups: this reply to so many is just to save others time. lee ___ Perl-Win32-Users mailing list [EMAIL PROTECTED]

RE: (no subject)

2001-02-12 Thread stanley . g . martin
Here's a small sub that I used to use to access a Cisco Local Director to check the status of the nodes connected to it. # Config Variables my $host= 'cisco'; my $command = 'show real'; my $pass= 'password'; my $t = new Net::Telnet;

Re: (no subject)

2000-11-29 Thread Lee
Perl Developer wrote: what language is better: VB or Perl? Now let me think ___ Perl-Win32-Users mailing list [EMAIL PROTECTED] http://listserv.ActiveState.com/mailman/listinfo/perl-win32-users

Re: (no subject)

2000-11-28 Thread geo
Phew, I don't believe I've *ever* seen a better Trollbait post. This is the equivalent of asking a school of fish if they likes water or air better. - Geo what language is better: VB or Perl? _

RE: (no subject)

2000-11-28 Thread Christopher Hahn
Fortran forever!! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 28, 2000 8:54 PM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: Re: (no subject) Phew, I don't believe I've *ever* seen a better Trollbait post