RE: Send mail using SSL

2010-01-12 Thread Thomas Yan
52 PM To: Thomas Yan Cc: beginners@perl.org Subject: Re: Send mail using SSL Use Email::Sender::Transport::SMTP > a > I want to send mail using ssl with smtp server. Does Mail::Sender support > SSL? Or must I use Net::Smtp::SSL ? > > Regards, > Thomas. > > -- To u

Send mail using SSL

2010-01-11 Thread Thomas Yan
Hi, I want to send mail using ssl with smtp server. Does Mail::Sender support SSL? Or must I use Net::Smtp::SSL ? Regards, Thomas. -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/

DBI Placeholder Issue

2009-02-19 Thread Thomas Yan
t;execute( ) or die $dbh->errstr; I run the script and the output is: Can't rebind placeholder fn_dblog at F:\zDataBase\db.pl line 29. How to fix it ? Best regards! Thomas Yan

答复: OO confusion

2009-01-11 Thread Thomas Yan
>Ahh, but that's very different. My suspicion is that both the last-expr >scalar of the block and the $result scalar will share the same single >payload, similar to how: >$x = $y >doesn't actually copy the *content*... just the scalar wrapper around >the content. Does this mean that $x,

答复: print on the same line

2009-01-06 Thread Thomas Yan
7; 'x20, "\n"; #20 > length of the string. Best regards! Thomas Yan -邮件原件- 发件人: h3xx [mailto:amphetamach...@gmail.com] 发送时间: Tuesday, January 06, 2009 10:23 PM 收件人: beginners@perl.org 主题: Re: print on the same line I find it's easier (and in this case totally doable

Character Set list

2008-07-16 Thread Thomas Yan
Hello, How can I view the list of all the character sets supported by Perl? Could you tell me if I can find it in perldoc or a url at any website and where it is? Thanks. Thomas -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTE

Re: Chinese word problem

2007-05-15 Thread Thomas Yan
'我' takes 2 bytes '\0' takes 1 byte , so "我“ takes 3 Every chinese charecter takes 2 bytes - Original Message - From: Neil To: beginners@perl.org Sent: Wednesday, May 16, 2007 1:57 PM Subject: Chinese word problem Dear All: Question: How come the length of Chin

Re: Home directory

2007-02-25 Thread Thomas Yan
Hello, Hi all. How do I, inside Perl, get the path of the home directory? I assume if I can do this, it will only work under Linux / Unix? Under windows you can use print $ENV{USERPROFILE} to get the home directory. such as: C:\Documents and S