Re: Perl Monks by mail (was: type checks)

2023-06-07 Thread sisyphus
Using the B module to access a variable's flags is annoyingly clunky. It's much simpler using Inline::C (or XS), which is my usual (and preferred) method: # Filename: try_inline.pl use strict; use warnings; use Inline C => Config => BUILD_NOISY => 1, ; use Inl

Re: Mail::Sender and Precedence: bulk [solved]

2017-04-21 Thread Gary Stainburn
am it worked fine. By fixing the syntax errors the original program now also works. Gary On Friday 21 April 2017 09:46:07 Gary Stainburn wrote: > This is the constructor I (almost) always use when using Mail::Sender. > > my $sender=new Mail::Sender {from=>'we

Mail::Sender and Precedence: bulk

2017-04-21 Thread Gary Stainburn
This is the constructor I (almost) always use when using Mail::Sender. my $sender=new Mail::Sender {from=>'webmas...@ringways.co.uk', reply=>'webmas...@ringways.co.uk', headers=>'Precedence: bulk', smtp=>&#x

Re: Problems in Mail::Sender on sending a large attachment file

2013-01-05 Thread Jenda Krynicky
> I have used Mail::Sender for a number of years and I have had to > move onto new VM for Processing. > > The Linux is Red Hat Enterprise Linux Server release 5.4 > (Tikanga). > Perl is v5.8.8 built for x86_64-linux-thread-multi > Mail::Sender is 8.21

Problems in Mail::Sender on sending a large attachment file

2012-12-04 Thread Wagner, David --- Sr Programmer Analyst --- CFS
I have used Mail::Sender for a number of years and I have had to move onto new VM for Processing. The Linux is Red Hat Enterprise Linux Server release 5.4 (Tikanga). Perl is v5.8.8 built for x86_64-linux-thread-multi Mail::Sender is 8.21 I am only

Re: Mail::Sender with SSL

2012-08-16 Thread Jenda Krynicky
From: Chris Nehren > On Thu, Aug 16, 2012 at 00:05:56 +0200 , Jenda Krynicky wrote: > > From: Chris Nehren > > > On Tue, Aug 07, 2012 at 17:38:57 + , Thomas Dean wrote: > > > > Hi there, > > > > > > > > I have succeeded in sending mail t

Re: Mail::Sender with SSL

2012-08-15 Thread Chris Nehren
On Thu, Aug 16, 2012 at 00:05:56 +0200 , Jenda Krynicky wrote: > From: Chris Nehren > > On Tue, Aug 07, 2012 at 17:38:57 + , Thomas Dean wrote: > > > Hi there, > > > > > > I have succeeded in sending mail to my SMTP server with Mail::Sender > > >

Re: Mail::Sender with SSL

2012-08-15 Thread Jenda Krynicky
From: Chris Nehren > On Tue, Aug 07, 2012 at 17:38:57 + , Thomas Dean wrote: > > Hi there, > > > > I have succeeded in sending mail to my SMTP server with Mail::Sender > > without SSL. But now I'm wondering how to do that with SSL, for example, > &g

Re: Mail::Sender with SSL

2012-08-07 Thread Jeff Pang
module to handle MIME in today time? thanks. -- http://liren188.taobao.com/ -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/

Re: Mail::Sender with SSL

2012-08-07 Thread Thomas Dean
On Tue, 2012-08-07 at 10:05 -0400, Chris Nehren wrote: > On Tue, Aug 07, 2012 at 17:38:57 + , Thomas Dean wrote: > > Hi there, > > > > I have succeeded in sending mail to my SMTP server with Mail::Sender > > without SSL. But now I'm wondering how to do that

Re: Mail::Sender with SSL

2012-08-07 Thread Chris Nehren
On Tue, Aug 07, 2012 at 17:38:57 + , Thomas Dean wrote: > Hi there, > > I have succeeded in sending mail to my SMTP server with Mail::Sender > without SSL. But now I'm wondering how to do that with SSL, for example, > GMail. After reading the doc, I set TLS_required t

Re: Mail::Sender with SSL

2012-08-07 Thread Jeff Pang
I have succeeded in sending mail to my SMTP server with Mail::Sender without SSL. But now I'm wondering how to do that with SSL, for example, GMail. After reading the doc, I set TLS_required to 1 when I'm calling Mail::Sender->new, but nohing works. I tried to debug the prog

Mail::Sender with SSL

2012-08-07 Thread Thomas Dean
Hi there, I have succeeded in sending mail to my SMTP server with Mail::Sender without SSL. But now I'm wondering how to do that with SSL, for example, GMail. After reading the doc, I set TLS_required to 1 when I'm calling Mail::Sender->new, but nohing works. I tried to debug th

Re: Test Mail

2012-08-03 Thread Jeff Pang
congratulation, you have got it~ Fri, 3 Aug 2012 14:02:25 +0530 от Anitha Sreejith Victor : I want to subscribe to this perl forum thanks, Anitha -- Jeff Pang jeffp...@mail.ru

Re: Test Mail

2012-08-03 Thread Owen
> I want to subscribe to this perl forum Look at the message headers... List-Subscribe: <mailto:beginners-subscr...@perl.org> -- Owen -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/

Test Mail

2012-08-03 Thread Anitha Sreejith Victor
I want to subscribe to this perl forum thanks, Anitha

Re: send email by /usr/bin/mail

2012-04-02 Thread Shlomi Fish
Hi lina, On Mon, 2 Apr 2012 21:17:09 +0800 lina wrote: > Hi, > > I don't know how to send email in perl with > /usr/bin/mail > > Thanks ahead for any suggestions You shouldn't use /usr/bin/mail to send E-mail in Perl, as there are better (= more portable/etc.) so

Re: send email by /usr/bin/mail

2012-04-02 Thread Dr.Ruud
# failure my $eval_error = $@ || 'zombie error'; die 'Error sending email: ', $eval_error; }; Or use Try::Tiny. -- Greetings, Ruud -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/

Re: send email by /usr/bin/mail

2012-04-02 Thread Shekar
Here is the example i used to send emails from Perl scripts, might be useful for you...!!! sub sendEmail { my ($file)=@_; use Mail::Sender; my $sender = new Mail::Sender { smtp => '127.0.0.1', from => 'ad...@domain.com' } or die

Re: send email by /usr/bin/mail

2012-04-02 Thread Samir Arishy
t; if $@; I am sure someone will be able to modify it for other email providers On Mon, Apr 2, 2012 at 3:40 PM, lina wrote: > On Mon, Apr 2, 2012 at 9:34 PM, Shawn H Corey > wrote: > > On 12-04-02 09:17 AM, lina wrote: > >> > >> Thanks ahead for any suggestions &g

Re: send email by /usr/bin/mail

2012-04-02 Thread lina
On Mon, Apr 2, 2012 at 9:34 PM, Shawn H Corey wrote: > On 12-04-02 09:17 AM, lina wrote: >> >> Thanks ahead for any suggestions > > > Have you tried searching CPAN for "mail"? http://search.cpan.org/ This short script is planned to use in remote server to che

Re: send email by /usr/bin/mail

2012-04-02 Thread Shawn H Corey
On 12-04-02 09:17 AM, lina wrote: Thanks ahead for any suggestions Have you tried searching CPAN for "mail"? http://search.cpan.org/ -- Just my 0.0002 million dollars worth, Shawn Programming is as much about organization and communication as it is about coding. [updated f

send email by /usr/bin/mail

2012-04-02 Thread lina
Hi, I don't know how to send email in perl with /usr/bin/mail Thanks ahead for any suggestions Best regards, -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/

Re: Stop the mail to me

2011-10-07 Thread Sheppy R
Stop spamming us with stop mail requests and use the instructions included at the bottom of the email to unsubscribe. To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/ On Fri, Oct 7, 2011 at 6:24 AM, ganesh

Re: Stop the mail to me

2011-10-07 Thread Ramprasad Prasad
> > To unsubscribe, e-mail: beginners-unsubscr...@perl.org > Read the footer of the mail

Stop the mail to me

2011-10-07 Thread ganesh vignesh
Stop mail On 10/6/11, Chris Stinemetz wrote: > trying to learn smart matching in an exercise. > > Why does this program output "odd" when I input an even number? > > Thank you, > > Chris > > #!/usr/bin/perl > > use warnings; > use strict; > &

Stop sent the mail to me

2011-10-07 Thread ganesh vignesh
Stop the mail On 10/7/11, Marc wrote: > On Sep 8, 2011, at 10:13 AM, Rob Dixon wrote: > >> my $string = 'The Kcl Group'; >> >> $string =~ s/\b([aeiouy]{3,4}|[^aeiouy]{3,4})\b/\U$1/ig; >> >> print $string, "\n"; > > I'd

Re: Verifying an e-mail address

2011-07-05 Thread Rob Dixon
On 27/06/2011 21:46, Marc wrote: On Jun 27, 2011, at 1:27 PM, Bob McConnell wrote: The problem with this is that, due to the spam plague, most servers will no longer tell you if an address is valid. Many do not even return a bounce message, but silently discard any and all mail for unknown

RE: Verifying an e-mail address

2011-07-05 Thread Mimi Cafe
eck => 1 ) ? '1' : '0'); } => -Original Message- => From: Jim Gibson [mailto:jimsgib...@gmail.com] => Sent: 27 June 2011 20:04 => To: Perl Beginners => Subject: Re: Verifying an e-mail address => => On 6/27/11 Mon Jun 27, 2011 11:53 AM, "sono...@fannullo

Re: Verifying an e-mail address

2011-07-01 Thread Wernher Eksteen
On 27 June 2011 20:53, wrote: >I'd like to find a way to check if an e-mail address that is entered > on a form is valid or, at the very least, just not invalid. Checking CPAN, > I ran across a module called Email::Verify::SMTP. Has anyone used this > before? If

Re: Verifying an e-mail address

2011-07-01 Thread sono-io
t that should let you > do verify e-mail addresses. > > If my reply doesn't make it to the the newsgroup you can post this if you > like. > > -Rick > > Original Message > > Keep in mind all of the warnings mentioned in this thread. T

RE: Verifying an e-mail address

2011-06-29 Thread Wagner, David --- Sr Programmer Analyst --- CFS
>-Original Message- >From: sono...@fannullone.us [mailto:sono...@fannullone.us] >Sent: Monday, June 27, 2011 13:15 >To: Jim Gibson >Cc: Perl Beginners >Subject: Re: Verifying an e-mail address > >On Jun 27, 2011, at 12:04 PM, Jim Gibson wrote: > >> '

Re: Verifying an e-mail address

2011-06-27 Thread Octavian Rasnita
From: On Jun 27, 2011, at 1:27 PM, Bob McConnell wrote: The problem with this is that, due to the spam plague, most servers will no longer tell you if an address is valid. Many do not even return a bounce message, but silently discard any and all mail for unknown addresses. Good points. I&#

Re: Verifying an e-mail address

2011-06-27 Thread sono-io
On Jun 27, 2011, at 1:27 PM, Bob McConnell wrote: > The problem with this is that, due to the spam plague, most servers will > no longer tell you if an address is valid. Many do not even return a > bounce message, but silently discard any and all mail for unknown > addresses.

RE: Verifying an e-mail address

2011-06-27 Thread Bob McConnell
com. This morning, when I e-mailed her directly, it bounced back immediately as user unknown which means she didn't get her e-mail from the cart and I wasn't aware of that until now. > > It seems that all I'd need would be to check 1) if the domain is good and 2) whet

Re: Verifying an e-mail address

2011-06-27 Thread Rob Dixon
On 27/06/2011 19:53, sono...@fannullone.us wrote: I'd like to find a way to check if an e-mail address that is entered on a form is valid or, at the very least, just not invalid. Checking CPAN, I ran across a module called Email::Verify::SMTP. Has anyone used this before? If so, what are

Re: Verifying an e-mail address

2011-06-27 Thread Octavian Rasnita
irectly, it bounced back immediately as user unknown which means she didn't get her e-mail from the cart and I wasn't aware of that until now. It seems that all I'd need would be to check 1) if the domain is good and 2) whether or not the user has an account on that domain. I&#

Re: Verifying an e-mail address

2011-06-27 Thread sono-io
ed her directly, it bounced back immediately as user unknown which means she didn't get her e-mail from the cart and I wasn't aware of that until now. It seems that all I'd need would be to check 1) if the domain is good and 2) whether or not the user has an account on that dom

Re: Verifying an e-mail address

2011-06-27 Thread Jim Gibson
On 6/27/11 Mon Jun 27, 2011 12:14 PM, "sono...@fannullone.us" scribbled: > On Jun 27, 2011, at 12:04 PM, Jim Gibson wrote: > >> 'perldoc -q address' "How do I check a valid mail address?" > > Thanks, Jim, I'm reading that now. However,

Re: Verifying an e-mail address

2011-06-27 Thread sono-io
On Jun 27, 2011, at 12:04 PM, Jim Gibson wrote: > 'perldoc -q address' "How do I check a valid mail address?" Thanks, Jim, I'm reading that now. However, after glancing at it, I may not have been clear in what I actually want. I'm looking to see if it

Re: Verifying an e-mail address

2011-06-27 Thread sono-io
Octavian, > I recommend Email::Valid. Any particular reason? Marc -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/

Re: Verifying an e-mail address

2011-06-27 Thread Octavian Rasnita
From: I'd like to find a way to check if an e-mail address that is entered on a form is valid or, at the very least, just not invalid. Checking CPAN, I ran across a module called Email::Verify::SMTP. Has anyone used this before? If so, what are your impressions? If this is not a

Re: Verifying an e-mail address

2011-06-27 Thread Jim Gibson
On 6/27/11 Mon Jun 27, 2011 11:53 AM, "sono...@fannullone.us" scribbled: > I'd like to find a way to check if an e-mail address that is entered on a form > is valid or, at the very least, just not invalid. Checking CPAN, I ran across > a module called Email::Verify

Verifying an e-mail address

2011-06-27 Thread sono-io
I'd like to find a way to check if an e-mail address that is entered on a form is valid or, at the very least, just not invalid. Checking CPAN, I ran across a module called Email::Verify::SMTP. Has anyone used this before? If so, what are your impressions? If this is

Re: draw html tables and send in mail

2011-06-06 Thread Chris Nehren
On Wed, Jun 01, 2011 at 04:29:44 -0400 , John SJ Anderson wrote: > First, you should probably read the Mail::Sendmail FAQ on HTML email: > <http://alma.ch/perl/Mail-Sendmail-FAQ.html#HTML> That will explain > how to properly construct a multipart message that has both text and >

Re: draw html tables and send in mail

2011-06-01 Thread John SJ Anderson
On Wed, Jun 1, 2011 at 01:05, Irfan Sayed wrote: [ snip ] > use HTML::Table; > use Mail::Sendmail; > > $table = new HTML::Table(2, 2); >     print 'Start'; >     print $table->getTable; >     print 'End

Re: draw html tables and send in mail

2011-06-01 Thread Shlomi Fish
Hi Irfan, thanks for trying Perl. A few comments on your code. On Wednesday 01 Jun 2011 08:05:30 Irfan Sayed wrote: > Hi All, > > > I wrote perl script to draw html tables and send that html tables in mail . > i used two modules 1: html::tables and 2: mail::sendmail > >

draw html tables and send in mail

2011-05-31 Thread Irfan Sayed
Hi All, I wrote perl script to draw html tables and send that html tables in mail . i used two modules 1: html::tables and 2: mail::sendmail but when i send mail , it never prints the actual table in the mail body following is the code snippet, use HTML::Table; use Mail::Sendmail; $table

Re: Oracle DBA's group mail ids'

2011-04-14 Thread Raveen du
Peter, Thanks for the response, i am a beginner level of DBA. I am looking for an help with beginer level of knoweldge. Can you please some group ids where i can get this ? regards, Raveendu On Wed, Apr 13, 2011 at 5:01 PM, Peter McLarty < peter.mcla...@pacificdbms.com.au> wrote: > It woul

Re: Oracle DBA's group mail ids'

2011-04-14 Thread Peter McLarty
r community, i am >> also looking for some email groups for Oracle DBA's. If anybody is oracle >> DBA in this group, can you pls help me by giving some usefull email groups >> to get the Oralce DBA related tips ,queirs and clarification? >> >> Waiting for your

Re: Oracle DBA's group mail ids'

2011-04-13 Thread xiaolan
et the Oralce DBA related tips ,queirs and clarification? >> >> Waiting for your reply.. >> >> regards, >> Raveendu. >> > -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/

Re: Oracle DBA's group mail ids'

2011-04-13 Thread Raveen du
Dear friends, awaiting for your reply . can you please someone advis me on this please On Tue, Apr 12, 2011 at 4:12 PM, Raveen du wrote: > Dear Friends, > As like we are having the perl user community, i am > also looking for some email groups for Oracle DBA's. If anybody

Re: Perl Mail::Sendmail encoding problem

2011-01-18 Thread Uri Guttman
upport -- - Gourmet Hot Cocoa Mix http://bestfriendscocoa.com - -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/

Re: Perl Mail::Sendmail encoding problem

2011-01-18 Thread Shlomi Fish
Hi sync, On Tuesday 18 Jan 2011 03:17:21 sync wrote: > Greetings all, > > I have to send emails through a smtp server, with Chinese character > encoding. > > > In details , the encoding of my send mail is UTF-8, but the encoding of > > others received is GB2321

Perl Mail::Sendmail encoding problem

2011-01-17 Thread sync
Greetings all, I have to send emails through a smtp server, with Chinese character encoding. In details , the encoding of my send mail is UTF-8, but the encoding of others received is GB2321 , so it will apprears with "weird" characters. Does anyone has any working exam

Re: using Net::SMTP unable to send out a mail

2010-11-04 Thread Agnello George
On Thu, Nov 4, 2010 at 2:40 PM, Rob Coops wrote: > > > On Thu, Nov 4, 2010 at 9:50 AM, Agnello George > wrote: > >> HI >> >> i wrote a small simple script using Net::smtp however my local MTA is not >>

Re: using Net::SMTP unable to send out a mail

2010-11-04 Thread Rob Coops
On Thu, Nov 4, 2010 at 9:50 AM, Agnello George wrote: > HI > > i wrote a small simple script using Net::smtp however my local MTA is not > accepting the mail here is the script : > > > = > > #!/usr/bin/perl > > use

using Net::SMTP unable to send out a mail

2010-11-04 Thread Agnello George
HI i wrote a small simple script using Net::smtp however my local MTA is not accepting the mail here is the script : = #!/usr/bin/perl use strict; use warnings; use Net::SMTP; use Getopt::Long; my $from = '' || 'sys...@server1

using Net::SMTP unable to sen out a mail

2010-11-03 Thread Agnello George
HI i wrote a small simple script using Net::smtp however my local MTA is not accepting the mail here is the script : = #!/usr/bin/perl use strict; use warnings; use Net::SMTP; use Getopt::Long; my $from = '' || 'sys...@server1

Re: Sending an E-Mail

2010-10-12 Thread Shlomi Fish
On Wednesday 13 October 2010 07:50:58 Shlomi Fish wrote: > Hi Mark, > > On Wednesday 13 October 2010 04:08:13 Mark wrote: > > On 10/10/10 3:50 AM, Shlomi Fish wrote: > > > Looking at your code, I see that you process the E-mail message using > > > regular expressi

Re: Sending an E-Mail

2010-10-12 Thread Shlomi Fish
Hi Mark, On Wednesday 13 October 2010 04:08:13 Mark wrote: > On 10/10/10 3:50 AM, Shlomi Fish wrote: > > Looking at your code, I see that you process the E-mail message using > > regular expressions. Please don't do that and use a CPAN module. > > I'm not sur

Re: Sending an E-Mail

2010-10-12 Thread Mark
On 10/10/10 3:50 AM, Shlomi Fish wrote: Looking at your code, I see that you process the E-mail message using regular expressions. Please don't do that and use a CPAN module. I'm not sure I understand the admonishment. Is it that, if I use regex to process the e-mail, then I don&

Re: Sending an E-Mail

2010-10-10 Thread Shlomi Fish
Hi Mark, On Sunday 10 October 2010 09:25:35 Mark wrote: > Hi, folks, > > I'd like to send a string ($line) as an e-mail from within a script. > > I receive regular e-mail forwards from a college I teach at, because I > don't want to use their Outlook webm

Sending an E-Mail

2010-10-10 Thread Mark
Hi, folks, I'd like to send a string ($line) as an e-mail from within a script. I receive regular e-mail forwards from a college I teach at, because I don't want to use their Outlook webmail. In the process of being forwarded, each message gets rewritten by Outlook's we

RE: Send mail using SSL

2010-01-12 Thread Gurunandan R. Bhat
be I am not careful enough to find it. > > Is there any module easy to send attachments over ssl? > > -Original Message- > From: Gurunandan R. Bhat [mailto:g...@dygnos.com] > Sent: Tuesday, January 12, 2010 2:52 PM > To: Thomas Yan > Cc: beginners@perl.org > Subjec

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

Re: Send mail using SSL

2010-01-11 Thread Gurunandan R. Bhat
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. > >

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/

Re: Regarding module Mail-Box, and accessing "subject" field of a MBOX message

2010-01-08 Thread Shlomi Fish
Hi Shankar! On Thursday 07 Jan 2010 21:24:18 Shankar wrote: > Hello, > > I'm using CPAN module, Mail-Box-2.093, to parse and process my MBOX > file on Unix. > > I have a message as follows. > I have an email, when I open in PINE on Unix, it shows the header as: >

Re: Regarding module Mail-Box, and accessing "subject" field of a MBOX message

2010-01-08 Thread Jeff Peng
On, 2010-01-07 at 11:24 -0800, Shankar wrote: > Hello, > > I'm using CPAN module, Mail-Box-2.093, to parse and process my MBOX > file on Unix. > > I have a message as follows. > I have an email, when I open in PINE on Unix, it shows the header as: > [utf-8] Recomme

Regarding module Mail-Box, and accessing "subject" field of a MBOX message

2010-01-08 Thread Shankar
Hello, I'm using CPAN module, Mail-Box-2.093, to parse and process my MBOX file on Unix. I have a message as follows. I have an email, when I open in PINE on Unix, it shows the header as: [utf-8] Recommendation Letter... When I try to access this field using the Mail-Box module, I get a s

Re: Please remove all references in mail archive

2010-01-07 Thread fudmer rieley
e presence of the BGFL stuff from my browsers and computers I would appreciate posting the removal technology, please! --- On Wed, 1/6/10, jay taylor wrote: > From: jay taylor > Subject: Please remove all references in mail archive > To: beginners@perl.org > Date: Wednesday, Jan

Re: Please remove all references in mail archive

2010-01-06 Thread Shawn H Corey
.0002 million dollars worth, Shawn Programming is as much about organization and communication as it is about coding. I like Perl; it's the only language where you can bless your thingy. -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/

Re: Please remove all references in mail archive

2010-01-06 Thread jm
t; > Please remove every link to my name in the mail-archive.com as soon as > possible otherwise, I would have to take legal actions. > > www.mail-archive.com/beginners@perl.org/msg44490.html > > > -- since this is a gmail account, please verify the mailing list is included in the reply to addresses

Please remove all references in mail archive

2010-01-06 Thread jay taylor
find me.   Please remove every link to my name in the mail-archive.com as soon as possible otherwise, I would have to take legal actions.   www.mail-archive.com/beginners@perl.org/msg44490.html

Re: text html from file to a scalar and mail

2009-09-16 Thread John Plum
=> "flowed", > }, > body => $customer_msg_html, ## Please read as : body =>${signature_ref}, > ), > > >#Results : > > >SCALAR(0x83c64d0) > > >(I found the same result with the variable handled as $signature ref)

Re: text html from file to a scalar and mail

2009-09-16 Thread John Plum
server, where i got: SCALAR(0x83c64d0). I checked carefully to see if the file input was read. I have no clues as to why. This still leaves me without a solution though. Not sure where to go next. http://jakbop.nfshost.com -- -- http://jakbop.nfshost.com -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/

Re: text html from file to a scalar and mail

2009-09-13 Thread Shlomi Fish
t necessarily mean there > isn't one. It may very well be too big to fit in the small cut hole > that you see. > Maybe. It's still hard to read. Regards, Shlomi Fish > Jenda > = je...@krynicky.cz === http://Jenda.Krynicky.cz = > When it comes to wine, women and song, wizards are allowed > to get drunk

Re: text html from file to a scalar and mail

2009-09-12 Thread Jenda Krynicky
example doesn't necessarily mean there isn't one. It may very well be too big to fit in the small cut hole that you see. Jenda = je...@krynicky.cz === http://Jenda.Krynicky.cz = When it comes to wine, women and song, wizards are allowed to get drunk and croon as much as they like. -- Terry Pratchett in Sourcery -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/

Re: text html from file to a scalar and mail

2009-09-12 Thread Shlomi Fish
> > MY problem is obtaining and passing text/html from file to a scalar > variable to be printed to mail, (using MIME::Creator). > > Unfortunately I get: 'printFile(FileHandle=GLOB(0x84b66b8))' > This means it is a typeglob (a generic entry in the Perl 5 packages (=

text html from file to a scalar and mail

2009-09-12 Thread John Plum
text/html from file to a scalar variable to be printed to mail, (using MIME::Creator). Unfortunately I get: 'printFile(FileHandle=GLOB(0x84b66b8))' The reference assigned to the scalar variable is from a FileHandle sub routine. However, with a similar reference to sub routines, i.e.

Re: Need help with Mail::Sender

2009-07-01 Thread Dennis Wicks
Jeff Chimene wrote the following on 06/26/2009 10:14 AM: I don't see glaringly wrong with it off the top of my head. You might try some things: * Split the 'content_id' value into its own parameter * Let Mail::Sender supply the "boundary" parameter * Employ

Re: Need help with Mail::Sender

2009-06-26 Thread Gurunandan R. Bhat
In my limited experience, I have had no issues with Email::MIME::CreateHTML. It also creates an object that Email::Sender can deliver. Do try it. REgards Gurunandan On Fri, 2009-06-26 at 17:36 +0200, Jenda Krynicky wrote: > Yes, the problem is very simple. Each mail client handles t

Re: Need help with Mail::Sender

2009-06-26 Thread Dermot
2009/6/26 Jenda Krynicky : This is what > worked for me in Pegasus Mail: It's good to know there are still a few pmail users out there :) -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/

Re: Need help with Mail::Sender

2009-06-26 Thread Jenda Krynicky
Date sent: Thu, 25 Jun 2009 23:27:24 -0500 From: Dennis Wicks To: Perl Beginners Subject:Need help with Mail::Sender > Greetings; > > Following the docs I have it working, somewhat, but it is > not handling html w/i

RE: Need help with Mail::Sender

2009-06-26 Thread Bob McConnell
re as the alternate text, even though it is the primary message content. Bob McConnell -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/

Need help with Mail::Sender

2009-06-25 Thread Dennis Wicks
problem? Many TIA! Dennis === === program follows === === > #!/usr/bin/perl > > use strict; > use warnings; > use Mail::Sender; > > my $image = 'kitten.jpg'; > > my $sender = Mail::Sender->new( { > smtp => 'smtpout.secureserver.net',

MIME encoding and Mail::Sender (was: Sending email ...)

2009-03-04 Thread Gunnar Hjalmarsson
The discussion in this thread made me realize that I'd better update my own mail related module, CGI::ContactForm, as regards MIME encoding. An updated version has been uploaded to CPAN. http://search.cpan.org/dist/CGI-ContactForm/ On February 24, 2009 Octavian Râsnita wrote: Mail::S

RE: Comparing 2 directories of Mail/News single files

2009-03-02 Thread Bob McConnell
On Behalf Of Harry Putnam > > I have a semi-big mess here. > > Never mind how I managed it but let me describe what I want to do and > maybe some kind soul can steer me to something on cpan or just have > some helpful clues. > > I have two directories of news/mail messa

Comparing 2 directories of Mail/News single files

2009-03-02 Thread Harry Putnam
I have a semi-big mess here. Never mind how I managed it but let me describe what I want to do and maybe some kind soul can steer me to something on cpan or just have some helpful clues. I have two directories of news/mail messages containing different number of files. However I expect there is

Re: Sending email w/Mail::Builder::Simple -- need help

2009-02-25 Thread Gunnar Hjalmarsson
Dennis G. Wicks wrote: We now return you to the original problem! What's that about? Oh, yeah... ;-) I got the sample that Gunnar posted using Mail::Sender to work after I played around with cpan and got it installed. Now I have discovered a new problem. The SMTP server does not respo

Re: Sending email w/Mail::Builder::Simple -- need help

2009-02-25 Thread Dennis G. Wicks
We now return you to the original problem! I got the sample that Gunnar posted using Mail::Sender to work after I played around with cpan and got it installed. Now I have discovered a new problem. The SMTP server does not respond on the first try all the time. (I think this is a local

Re: Sending email w/Mail::Builder::Simple -- need help

2009-02-25 Thread Gunnar Hjalmarsson
the utf8 pragma makes Perl allow that. HTH -- Gunnar Hjalmarsson Email: http://www.gunnar.cc/cgi-bin/contact.pl -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/

Re: Sending email w/Mail::Builder::Simple -- need help

2009-02-25 Thread Octavian Râşniţă
quot;Yesterday: $igår\n"; ("igår" is Swedish for "yesterday") -- Gunnar Hjalmarsson Well I have tried the scripts from the 2 messages, but I must admit that I don't understand what I should look for. Both of them print the same thing, no matter if I use "use utf8;&q

Re: Sending email w/Mail::Builder::Simple -- need help

2009-02-25 Thread Gunnar Hjalmarsson
t; is Swedish for "yesterday") -- Gunnar Hjalmarsson Email: http://www.gunnar.cc/cgi-bin/contact.pl -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/

Re: Sending email w/Mail::Builder::Simple -- need help

2009-02-25 Thread Gunnar Hjalmarsson
uot;) -- Gunnar Hjalmarsson Email: http://www.gunnar.cc/cgi-bin/contact.pl -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/

Re: Sending email w/Mail::Builder::Simple -- need help

2009-02-25 Thread Gunnar Hjalmarsson
he utf8 pragma is about. (But, as I'm sure you understand, my UTF-8 knowledge is limited.) perldoc utf8 As far as I know, Mail::Sender does not encode the headers, but I wouldn't call that a bug. It just means that unless the subject line is ISO-8859-1 (or ASCII), you need to enc

Re: Sending email w/Mail::Builder::Simple -- need help

2009-02-25 Thread Octavian Râsnita
to the module. That's not a UTF-8 string. If I used it in a UTF-8 encoded perl program and was also using "use utf8;" in it, I expected that it understand that it should be encoded to UTF-8. So there should be some bugs in Mail::Sender or the module it uses for encoding the he

Re: Sending email w/Mail::Builder::Simple -- need help

2009-02-25 Thread Gunnar Hjalmarsson
Octavian Râsnita wrote: From: "Gunnar Hjalmarsson" Well, if I understand it correctly, Mail::Builder::Simple *enforces* the use of UTF-8, which is something I don't like. Well, I like that, because it is more simple to send special chars from more languages, but without need

Re: Sending email w/Mail::Builder::Simple -- need help

2009-02-24 Thread Octavian Râsnita
I see the word "secure" in the host of the server. The server might be secured and it could use SSL or TLS encryptions for communicating with it. If it does this, you can try to use something like: use strict; use Mail::Builder::Simple; use Net::SMTP::SSL; #or TLS my $mail

  1   2   3   4   5   6   7   8   9   10   >