Re: Problem using Email::Mailer on laptop

2017-03-20 Thread SSC_perl
> I've taken the liberty of raising this on Github for you, since I'd > already done the digging and found the code in question, so it was just > as easy to more or less copy & paste this reply into a ticket: > https://github.com/gryphonshafer/Email-Mailer/issues/1

Re: Problem using Email::Mailer on laptop

2017-03-20 Thread David Precious
On Mon, 20 Mar 2017 11:23:39 -0700 SSC_perl wrote: > Is anyone here successfully using Email::Mailer? I installed > it using cpanm a couple of days ago on my Mac and I can’t get it to > work. It just prints the following output and nothing more: > > postdrop: warning: m

Re: Problem using Email::Mailer on laptop

2017-03-20 Thread SSC_perl
ound that Gryphon has been a pretty prolific contributor to CPAN since 2015 - 30 modules in all. I like his pod writeup on Email::Mailer - it’s very comprehensive, straight forward, and easy to understand. And after browsing the source code, I like his coding style, too. He also lives i

Re: Problem using Email::Mailer on laptop

2017-03-20 Thread SSC_perl
Is anyone familiar with Gryphon Shafer’s work? https://metacpan.org/pod/Email::Mailer Frank -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/

Problem using Email::Mailer on laptop

2017-03-20 Thread SSC_perl
Is anyone here successfully using Email::Mailer? I installed it using cpanm a couple of days ago on my Mac and I can’t get it to work. It just prints the following output and nothing more: postdrop: warning: mail_queue_enter: create file maildrop/352468.4276: No such file or

Re: Looking for mailer program

2009-02-22 Thread Octavian Râsnita
From: "Dennis G. Wicks" Greetings; I have a couple of directories full of tips, photos, quotes, etc. that I want to send to a yahoo group that I have. What I want to do is compose the email, pick an item or two from the directory, put it in the email & move it/them to a "used" directory and

Looking for mailer program

2009-02-22 Thread Dennis G. Wicks
Greetings; I have a couple of directories full of tips, photos, quotes, etc. that I want to send to a yahoo group that I have. What I want to do is compose the email, pick an item or two from the directory, put it in the email & move it/them to a "used" directory and send the email. I'll fir

Re: Mail::Mailer

2005-11-01 Thread Jay Savage
; > > On 10/31/05, Matthew Sacks > > <[EMAIL PROTECTED]> wrote: > > > Trying to use Mail::Mailer, in the sample code > > below. > > > > > > i) if I put -T on the first line invoking Perl, I > > get > > > an error like "too late for -T

Re: Mail::Mailer

2005-11-01 Thread Jay Savage
On 10/31/05, Matthew Sacks <[EMAIL PROTECTED]> wrote: > Trying to use Mail::Mailer, in the sample code below. > > i) if I put -T on the first line invoking Perl, I get > an error like "too late for -T option" > ? > > ii) The program runs but the mail n

Mail::Mailer

2005-10-31 Thread Matthew Sacks
Trying to use Mail::Mailer, in the sample code below. i) if I put -T on the first line invoking Perl, I get an error like "too late for -T option" ? ii) The program runs but the mail never arrives. The eval block checks always succeed. Where is the mail going? -matthew sacks

Re: Problem using Mailer

2004-10-11 Thread mgoland
Ravi, What is the error msg being produced if any ?? - Original Message - From: "T.S. RaviShankar" <[EMAIL PROTECTED]> Date: Monday, October 11, 2004 10:53 am Subject: Problem using Mailer > Hello, > > The below piece of code doesn't work for me.

Re: Problem using Mailer

2004-10-11 Thread T.S. RaviShankar
Thanks for the reply. I did check with "use warnings" . I indeed got few warnings but none of them pertained to the piece of code I showed. The problem is that the code doesn't send any email as it is supposed to. What could have gone wrong if you don't see any problem with the code here ? Thank

Re: Problem using Mailer

2004-10-11 Thread JupiterHost.Net
T.S. RaviShankar wrote: Hello, The below piece of code doesn't work for me. 1) add use strict and use warnings to the code 2) then make the code strict and warnings safe 3) then tell us specifically what you mean by "doesn't work for me" -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Problem using Mailer

2004-10-11 Thread T.S. RaviShankar
Hello, The below piece of code doesn't work for me. $sfile = $req_file; open(RF,"<$req_file"); chop(@rflines=); close(RF); use lib "/remote/xx/yy/SCRIPTS/libnet-1.12/"; use lib "/remote/xx/yy/SCRIPTS/"; use Mail::Mailer; $mailer = Mail::Mailer

RE: Mial::Mailer Date Stamp and Error Handling using SMTP Service

2003-06-16 Thread Smith Jeff D
That addresses the first part--even though I didn't install the new 5.8 module yet, changing the date string format to the new RFC standard format before sending it off to the mailer changes the date/timestamp on the message correctly. Anyone have a better approach toward error-trappin

RE: Mial::Mailer Date Stamp and Error Handling using SMTP Service

2003-06-16 Thread Smith Jeff D
EMAIL PROTECTED] Subject: Re: Mial::Mailer Date Stamp and Error Handling using SMTP Service Smith Jeff D wrote: > > I was wondering if someone could point me in the right > direction for using the Mail::Mailer module. I have two questions: > > I have a simple scrip

Re: Mial::Mailer Date Stamp and Error Handling using SMTP Service

2003-06-16 Thread John W. Krahn
Smith Jeff D wrote: > > I was wondering if someone could point me in the right direction for > using the Mail::Mailer module. I have two questions: > > I have a simple script to mail log files to systems administrators using > Mail::Mailer --that works fine as i

Mial::Mailer Date Stamp and Error Handling using SMTP Service

2003-06-16 Thread Smith Jeff D
I was wondering if someone could point me in the right direction for using the Mail::Mailer module. I have two questions: I have a simple script to mail log files to systems administrators using Mail::Mailer --that works fine as it is. 1. Date/Timestamp modification: But I notice that

RE: Mail::Mailer

2003-06-09 Thread Tony Esposito
Sure...here it is... #= use Mail::Mailer; sub threshold_check() { my ($file_sys, $per_used, $threshold) = @_; my %mail_headers = ('From' => '[EMAIL PROTECTED]', 'To' => ['[EMAIL PROTE

Re: Mail::Mailer

2003-06-09 Thread Jair Santos
Please, send the code to the list. I would like to know because have a similar problem. thanks Jair - Original Message - From: "Tony Esposito" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, June 09, 2003 10:14 AM Subject: RE: Mail::Mailer > You a

RE: Mail::Mailer

2003-06-09 Thread Tony Esposito
-Original Message- From: Tony Esposito Sent: Monday, June 09, 2003 11:48 AM To: [EMAIL PROTECTED] Subject: RE: Mail::Mailer To be more precise, I need an example of sending email via UNIX sendmail using the Mail::Mailer module. Thanks much. :-) > Anthony (Tony) Esposito > Senior

RE: Mail::Mailer

2003-06-09 Thread Tony Esposito
To be more precise, I need an example of sending email via UNIX sendmail using the Mail::Mailer module. Thanks much. :-) > Anthony (Tony) Esposito > Senior Technical Consultant > Inovis(tm) > 2425 N. Central Expressway, Suite 900 > Richardson, TX 75080 > (972) 643-3115

Mail::Mailer

2003-06-09 Thread Tony Esposito
I need to get more info on the package Mail::Mailer, specifically how to use the 'open' method. Can anyone assist, please? Thanks! > Anthony (Tony) Esposito > Senior Technical Consultant > Inovis(tm) > 2425 N. Central Expressway, Suite 900 > Richardson, TX 75080 &

Re: Perl Mailer

2003-04-02 Thread simran
Search for MIME::Entity on http://search.cpan.org/ On Thu, 2003-04-03 at 10:39, Hytham Shehab wrote: > hi guys, > is anybody here knows a good script - good means MIME attachments - that > act as a mailer agent ? > > i have write some small scripts myself, but if someone

Re: Perl Mailer

2003-04-02 Thread Wiggins d'Anconia
Hytham Shehab wrote: hi guys, is anybody here knows a good script - good means MIME attachments - that act as a mailer agent ? i have write some small scripts myself, but if someone can handle MIME and it is already written, then it is better to use it. Check CPAN for MIME or in the Mail (sub

Perl Mailer

2003-04-02 Thread Hytham Shehab
hi guys, is anybody here knows a good script - good means MIME attachments - that act as a mailer agent ? i have write some small scripts myself, but if someone can handle MIME and it is already written, then it is better to use it. thx v.much -- To unsubscribe, e-mail: [EMAIL PROTECTED

WTF Naver-Mailer - WHAT IS THIS

2003-01-30 Thread Paul Kraus
Everytime I send a message to the perl list I get a message like this form some Naver mailer. What is this and how do I stop it. Header -- Received: from [211.218.150.104] by meemail1.pelsupply.com (NTMail 7.00. 0018/NU0133.02.dab8b08b) with ESMTP id przslaaa for [EMAIL PROTECTED]; Thu, 30

Re: WHO IS NAVER-MAILER@naver.com ???

2002-10-08 Thread Dharmender Rai
hough, I'll forward it on to you. > > Thanks! > > -- > Eric P. > Sunnyvale, CA > > > On Thu, 3 Oct 2002, Bruno Negrao - Perl List wrote: > > > Hi Eric. > > I'm not receiving that kind of message but I can > tell you in advance that > &g

Re: WHO IS NAVER-MAILER@naver.com ???

2002-10-08 Thread Eric Pretorious
ote: > Hi Eric. > I'm not receiving that kind of message but I can tell you in advance that > NAVER is not a person, instead it is a mailer-daemon process who is sending > you this automatic answer. If you send this error message to me I could try > to explain you why is i

WHO IS NAVER-MAILER@naver.com ???

2002-10-06 Thread Alfred Vahau
I had been puzzled about this too in the past when I replied to some of the help requests. Similar experience too with modperl mailing list. Out of curiosity I visited the naver.com site. It looked like from Asia? One of the colleagues here suggested that I unravel the screwy characters using a

Re: WHO IS NAVER-MAILER@naver.com ???

2002-10-05 Thread David Garamond
[EMAIL PROTECTED] wrote: > Every time I send a message to this list, I receive a message from > [EMAIL PROTECTED] immediately afterwards. It appears to be garbage > (lots of screwy characters...). > > Where is this coming from? Am I the only one receiving these? i suspect there is/are bounci

Re: WHO IS NAVER-MAILER@naver.com ???

2002-10-04 Thread Michael Kelly
On Thu, Oct 03, 2002 at 01:38:26PM +0800, [EMAIL PROTECTED] wrote: > Hello, All: > > Every time I send a message to this list, I receive a message from > [EMAIL PROTECTED] immediately afterwards. It appears to be garbage > (lots of screwy characters...). > > Where is this coming from? Am I the

Re: WHO IS NAVER-MAILER@naver.com ???

2002-10-03 Thread Tim Musson
Hey eric-perl, My MUA believes you used to write the following on Thursday, October 3, 2002 at 1:38:26 AM. eppn> Every time I send a message to this list, I receive a message from eppn> [EMAIL PROTECTED] immediately afterwards. It appears to be garbage eppn> (lots of screwy character

RE: WHO IS NAVER-MAILER@naver.com ???

2002-10-03 Thread Troy May
I never get them. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 02, 2002 10:38 PM To: Beginners Perl Mailing List Subject: WHO IS [EMAIL PROTECTED] ??? Hello, All: Every time I send a message to this list, I receive a message from [EMA

WHO IS NAVER-MAILER@naver.com ???

2002-10-03 Thread eric-perl
Hello, All: Every time I send a message to this list, I receive a message from [EMAIL PROTECTED] immediately afterwards. It appears to be garbage (lots of screwy characters...). Where is this coming from? Am I the only one receiving these? -- Eric P. Sunnyvale, CA -- To unsubscribe, e-mai

Re: NAVER-MAILER@naver.com

2002-08-16 Thread Tim Musson
Hey Jerry, My MUA believes you used Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) to write the following on Friday, August 9, 2002 at 7:36:40 AM. JP> Every time I send an e-mail to Beginners I get an e-mail JP> [EMAIL PROTECTED], and my e-mail admin says that it contains a JP> viru

RE: NAVER-MAILER@naver.com

2002-08-09 Thread Jerry Preston
Jay, It is in Korean! Jerry -Original Message- From: Jayashankar Nelamane Srinivasarao [mailto:[EMAIL PROTECTED]] Sent: Friday, August 09, 2002 7:00 AM To: 'Beginners Perl' Subject: RE: [EMAIL PROTECTED] Hi all This is hapens to me also. The mail comes from this very same email id,

RE: NAVER-MAILER@naver.com

2002-08-09 Thread Jayashankar Nelamane Srinivasarao
Hi all This is hapens to me also. The mail comes from this very same email id, but also will totally specially characters. Regards Jay -Original Message- From: Jerry Preston [mailto:[EMAIL PROTECTED]] Sent: 09 August 2002 17:07 To: Beginners Perl Subject: [EMAIL PROTECTED] Hey!! Eve

NAVER-MAILER@naver.com

2002-08-09 Thread Jerry Preston
Hey!! Every time I send an e-mail to Beginners I get an e-mail [EMAIL PROTECTED], and my e-mail admin says that it contains a viruses!! Any ideas what is going on?? Jerry

RE: Mail::Mailer

2002-07-19 Thread Matt Wetherill
Net::SMTP works for me (although I use the activestate perl package manager, which makes things easy :) regards Matt > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: 19 July 2002 09:02 > To: [EMAIL PROTECTED] > Subject: Mail::Mailer &g

Re: Mail::Mailer

2002-07-19 Thread Sudarshan Raghavan
On Fri, 19 Jul 2002 [EMAIL PROTECTED] wrote: > Hi > > I am having trouble locating the module Mail::Mailer on CPAN > > found loads of Mail modules but not the one i am looking for, am looking to > send messages by smtp. It comes as a part of MailTools http://search.cp

Re: Mail::Mailer

2002-07-19 Thread Connie Chan
If just a simple mail, you can try Net::SMTP, if with attacaement, you can try Mail::Sender Rgds, Connie - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, July 19, 2002 4:02 PM Subject: Mail::Mailer > Hi > > I am having troubl

RE: Mail::Mailer

2002-07-19 Thread stephen . redding
:[EMAIL PROTECTED]] Sent: Friday, July 19, 2002 09:02 To: [EMAIL PROTECTED] Subject: Mail::Mailer Hi I am having trouble locating the module Mail::Mailer on CPAN found loads of Mail modules but not the one i am looking for, am looking to send messages by smtp. does anyone know where the module is

Mail::Mailer

2002-07-19 Thread stephen . redding
Hi I am having trouble locating the module Mail::Mailer on CPAN found loads of Mail modules but not the one i am looking for, am looking to send messages by smtp. does anyone know where the module is located Thanks Stephen Redding BT Ignite Solutions Telephone - 0113 237 3277 Fax - 0113 244

Re: problem with Mail::Mailer

2002-05-19 Thread drieux
volks, thought I would use this opportunity to point out a few of the basics about SMTP - and that I like Mail::Mailer for most of the core simplifications it offers but it will not rescue you from your obligations as a coder The hackers already know more about SMTP - and so this is for

Re: problem with Mail::Mailer

2002-05-19 Thread Geoffrey F. Green
On 5/18/02 2:37 PM, "drieux" <[EMAIL PROTECTED]> wrote: > > On Saturday, May 18, 2002, at 07:53 , Geoffrey F. Green wrote: > [..] >> Note that I do have Net::SMTP installed, and I am able to send mail >> directly >> using Net::SMTP. > [..] >> (Running OS X 10.1.4, if it matters.) > nope - jeeves

AboutDoes Mail::Mailer work? on OS X platform

2002-05-18 Thread drieux
# use strict; ### use Mail::Mailer; ### ### my $prog=$0; ### ### my $server = "mail"; ### ### my %headers = ( ### From=> '[EMAIL PROTECTED]', ### To=> '[EMAIL PROTECTED]', ### Subject=> 'AboutDoes Mail::Mailer work? on OS X pla

Fwd: Does Mail::Mailer work?

2002-05-18 Thread drieux
Begin forwarded message: > From: [EMAIL PROTECTED] > Date: Sat May 18, 2002 04:30:36 US/Pacific > To: [EMAIL PROTECTED] > Subject: Does Mail::Mailer work? > > We'll see George - just loaded up what I needed to run this from bbedit { have I mentioned that bbed

Re: problem with Mail::Mailer

2002-05-18 Thread drieux
On Saturday, May 18, 2002, at 07:53 , Geoffrey F. Green wrote: [..] > Note that I do have Net::SMTP installed, and I am able to send mail > directly > using Net::SMTP. [..] > (Running OS X 10.1.4, if it matters.) nope - jeeves is also an OS X box [..] > my %headers = ( > From=> '[EMAIL P

problem with Mail::Mailer

2002-05-18 Thread Geoffrey F. Green
SMTP. Any thoughts? Thanks. - geoff (And yes, the "" in $server is for list-posting purposes only.) (Running OS X 10.1.4, if it matters.) == #!/usr/bin/perl -w use strict; use Mail::Mailer; my $server = "x"; my %headers = ( From=

RE: If you can't fix the mailer - fix the link

2002-05-11 Thread Timothy Johnson
essage- From: bob ackerman To: [EMAIL PROTECTED] Sent: 5/11/02 5:56 PM Subject: Re: If you can't fix the mailer - fix the link On Saturday, May 11, 2002, at 05:35 PM, drieux wrote: > > On Saturday, May 11, 2002, at 01:12 , drieux wrote: > >> >> thought I would forma

Re: If you can't fix the mailer - fix the link

2002-05-11 Thread bob ackerman
ginners/RegEx/HowPatternsEvolve. >> txt > > > http://www.wetware.com/drieux/pbl/RegEx/HowPatternsEvolve.txt > > sorry about that folks. > > this friendly mailer forces line wraps - so a simpler > work around at this point was to put the symbolic link > in on the webServer - u

If you can't fix the mailer - fix the link

2002-05-11 Thread drieux
sEvolve.txt sorry about that folks. this friendly mailer forces line wraps - so a simpler work around at this point was to put the symbolic link in on the webServer - update the and move on So now that I am older and wiser - what is the orthodox and canonical partitioning of classical perl prob

Re: Mail::Mailer Bcc problem

2001-12-05 Thread Michael Fowler
course, you're right. I'm not sure what I was thinking. As to the original post: try upgrading Mail::Mailer and Net::SMTP. I've tested my versions (Mail::Mailer v1.40 and Net::SMTP v2.16) and the Bcc: header is properly removed. Michael -- Administrator www.

Re: Mail::Mailer Bcc problem

2001-12-03 Thread Jenda Krynicky
From: Michael Fowler <[EMAIL PROTECTED]> > On Fri, Nov 30, 2001 at 10:24:24AM -0600, Kanchana Weerasinghe wrote: > > I have a problem using Mail::Mailer with a Bcc in the headerthe > > recipient (To) can see the Bcc field in the email header. > > This is a

Re: Mail::Mailer Bcc problem

2001-12-01 Thread Michael Fowler
On Fri, Nov 30, 2001 at 10:24:24AM -0600, Kanchana Weerasinghe wrote: > I have a problem using Mail::Mailer with a Bcc in the headerthe > recipient (To) can see the Bcc field in the email header. This is a problem with your MTA (mail transport agent; e.g. sendmail, postfix, qmail, etc.

Mail::Mailer Bcc problem

2001-11-30 Thread Kanchana Weerasinghe
I have a problem using Mail::Mailer with a Bcc in the headerthe recipient (To) can see the Bcc field in the email header. Here's my code: $headers{'To'} = $To; $headers{'Bcc'} = $Bcc; $headers{'From'} = $email_from; $headers{'Subject'} = $ema

Mail::Mailer Bcc problem

2001-11-30 Thread Kanchana Weerasinghe
I have a problem using Mail::Mailer with a Bcc in the headerthe recipient (To) can see the Bcc field in the email header. Here's my code: $headers{'To'} = $To; $headers{'Bcc'} = $Bcc; $headers{'From'} = $email_from; $headers{'Subject'} = $ema

Re-Mailer

2001-06-28 Thread Adam Theo
Hello, Adam Theo here; does anyone know of a script to 're-mail' emails? i have a bunch of 'saved' and 'archived' emails (in both Mozilla Inbox and RMAIL formats) stored on my local computer. i am looking for a script that will read these files, then re-send them to email accounts i specify,

Mailer

2001-05-22 Thread Chris Tunnell
I want to add a Mailer to my site, where can I find a simple perl script to handle this? Chris Tunnell