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

2017-04-21 Thread Gary Stainburn
Sorry to both you all. As usual, having posted asking for help I've managed to find the answer. In stripping out all the bits that I thought were not required to make this post I spotted the syntax error that was causing the issue. By putting the code exactly as shown into a dummy program it

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 to my SMTP server with Mail::Sender > > > > without SSL.

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 > > > without SSL. But now I'm wondering how to do t

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, > > GMail. After reading the doc, I set TLS_requ

Re: Mail::Sender with SSL

2012-08-07 Thread Jeff Pang
Also avoid the MIME::Lite suggestion posted, as that module is deprecated and not recommended for new code due to the vagaries and odd bugs in it--also due to the fact that it's not actively maintained or developed any more and just receives an occasional bug fix. what's the better module to h

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 with SSL, for example, > > GMail. Af

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 to 1 when I'm calling > Mai

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 program but found nothing

Re: Mail::Sender

2007-01-18 Thread Beginner
On 18 Jan 2007 at 9:55, Brent Clark wrote: > To whom it may concern > > I have a problem whereby on sending an email, my mailserver does not allow > for ip, (needs to be wrapped in [] ). > > >> 220 mail.eccotours.co.za ESMTP Exim (Ecco Tours) 4.63 Wed, 17 Jan 2007 > >> 16:47:41 +0200 > << EHLO

Re: Mail::Sender

2007-01-18 Thread Jeff Pang
Hi, This is the peer email site's behavior,not Perl's behavior. Follow some rfc items (maybe rfc2821 or 2505),you should use your host's FQDN as HELO command's argument.Only when there is not FQDN for the host,you can use IP address as HELO's argument. Exim is a very flexible system,it can be us

Re: Mail Attachment

2007-01-16 Thread JupiterHost.Net
Lawrence Statton XE2/N1GAK wrote: First -- your porgram is nowhere NEAR complete ... I see nowhere that $to_address, $from_address, etc are populated. Read the posting guidelines and try again. That being said, there are some glaring deficiencies that can be pointed out even without the compl

Re: Mail Attachment

2007-01-16 Thread Lawrence Statton XE2/N1GAK
First -- your porgram is nowhere NEAR complete ... I see nowhere that $to_address, $from_address, etc are populated. Read the posting guidelines and try again. That being said, there are some glaring deficiencies that can be pointed out even without the complete program. > > my $picture=PATH O

Re: mail list via script

2006-03-07 Thread Jay Savage
On 3/7/06, Ryan Frantz <[EMAIL PROTECTED]> wrote: > > > > -Original Message- > > From: Curt Shaffer [mailto:[EMAIL PROTECTED] > > Sent: Tuesday, March 07, 2006 11:06 AM > > To: beginners@perl.org > > Subject: mail list via script > > > > I have a need to mail 1000 users their usernames and

RE: mail list via script

2006-03-07 Thread Curt Shaffer
-Original Message- From: Ryan Frantz [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 07, 2006 11:28 AM To: Curt Shaffer; beginners@perl.org Subject: RE: mail list via script > -Original Message- > From: Curt Shaffer [mailto:[EMAIL PROTECTED] > Sent: Tuesday, March 07

RE: mail list via script

2006-03-07 Thread Ryan Frantz
> -Original Message- > From: Curt Shaffer [mailto:[EMAIL PROTECTED] > Sent: Tuesday, March 07, 2006 11:21 AM > To: Ryan Frantz; beginners@perl.org > Subject: RE: mail list via script > > > > -Original Message- > From: Ryan Frantz [mailto:[EM

Re: mail list via script

2006-03-07 Thread JupiterHost.Net
Thanks for the response! The problem I have with this solution is I need to send both a username and a password (i.e. two values) per email. Can I add another value to the hash like this: [EMAIL PROTECTED] => 'abc123','321cba',? my %users = ( '[EMAIL PROTECTED]' => [$johnuser, $johnpass],

RE: mail list via script

2006-03-07 Thread Curt Shaffer
-Original Message- From: Ryan Frantz [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 07, 2006 11:09 AM To: Curt Shaffer; beginners@perl.org Subject: RE: mail list via script > -Original Message- > From: Curt Shaffer [mailto:[EMAIL PROTECTED] > Sent: Tuesday, March 07

RE: mail list via script

2006-03-07 Thread Ryan Frantz
> -Original Message- > From: Curt Shaffer [mailto:[EMAIL PROTECTED] > Sent: Tuesday, March 07, 2006 11:06 AM > To: beginners@perl.org > Subject: mail list via script > > I have a need to mail 1000 users their usernames and passwords, this will > be > a 1 time thing. I was thinking that I

Re: Mail::Send and Taint

2005-11-20 Thread Tom Allison
Tom Allison wrote: I think I just got burned on Mail::Send. I've been using it for months/years with no problem, but now I'm writing a web app and Taint won't let me use Mail::Send Insecure $ENV{PATH} while running with -T switch at /usr/share/perl5/Mail/Mailer/sendmail.pm line 16. The ans

Re: Mail::Mailer

2005-11-01 Thread Jay Savage
Please don't top post, and please send replies to the list. On 11/1/05, Matthew Sacks <[EMAIL PROTECTED]> wrote: > > Any ideas about why -wT is producing > "too late for -T option" > > -m > > > --- Jay Savage <[EMAIL PROTECTED]> wrote: > > > On 10/31/05, Matthew Sacks > > <[EMAIL PROTECTED]> wrote

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 never arrives. The > eval block checks alway

RE: mail header split

2005-05-31 Thread Ankur Gupta
From: John W. Krahn [mailto:[EMAIL PROTECTED] > Ankur Gupta wrote: > > > > You can use splice to capture only the relevant fields. > > change it to this... > > > > my ($bookrefNumber) = (split(/-/,$pop3MailContent{'To'}))[0]; > > You mean a list slice, splice() is a perl function. > > perldoc

Re: mail header split

2005-05-31 Thread John W. Krahn
Ankur Gupta wrote: You can use splice to capture only the relevant fields. change it to this... my ($bookrefNumber) = (split(/-/,$pop3MailContent{'To'}))[0]; You mean a list slice, splice() is a perl function. perldoc -f splice John -- use Perl; program fulfillment -- To unsubscribe, e-m

RE: mail header split

2005-05-31 Thread Ankur Gupta
> I have an email To field that I want regex on > > The email is as so: > > [EMAIL PROTECTED] > > Im trying to get the number before the hyphen. > > Currently I have it as so > > my ($bookrefNumber, $discard) = split('-',$pop3MailContent{'To'}); You don't need to use $discard variable. You c

Re: Mail::Sender

2005-04-07 Thread Mike Blezien
Try seperating your $toList email addresses with a comma instead of the semi colon Ravinder Arepally wrote: All, I am having problem when I use multiple users in to or cc list while sending a email. I am using Mail::Sender module. I have a list of email addresses in $toList and I am just usi

Re: Mail 2 sms module

2005-03-14 Thread Steven Schubiger
On 14 Mar, Ramprasad A Padmanabhan wrote: > Hi all, > > Is there any module that can help me convert text or html mail to text > that can be sms-ed > I looked at the email2sms utility, but that does not provide any > includable module and doesnt work well with text & html mails. > > Thanks > R

Re: mail question

2005-03-09 Thread Peter Scott
On Tue, 08 Mar 2005 18:00:52 -0500, Amy Kline wrote: > Hi, > How do I modify the following code to email a file (textfile.txt) to > [EMAIL PROTECTED] > > open (MAIL, "|/usr/bin/mail [EMAIL PROTECTED]"); > print MAIL "Subject: test"; > print MAIL "This is a test"; > close MAIL; > > The above code

Re: mail question

2005-03-09 Thread Peter Rabbitson
IIRC (no time to test right now) you simply change the disposition to 'inline' and attach a file like in the example below. On Wed, Mar 09, 2005 at 07:29:14AM -0500, Amy Kline wrote: > Peter, thanks for the sample code. Is there a way that I can display > the text file as inline text instead of

Re: mail question

2005-03-08 Thread Marco Antonio Manzo
Or use the "new" collection of Email::* modules for handling Mime stuff. Email::Simple would do the job. On Tue, 2005-03-08 at 19:53 -0500, Peter Rabbitson wrote: > As stated earlier on the list I believe, I would not use an external program > call. Instead use the MIME::Lite - clean and simple

Re: mail question

2005-03-08 Thread Peter Rabbitson
As stated earlier on the list I believe, I would not use an external program call. Instead use the MIME::Lite - clean and simple: my $mail = MIME::Lite->new (From => $from_email, To => $to_email, Subject => 'Test',

Re: Mail-Internet problem

2005-02-07 Thread Wiggins d'Anconia
Douglas Lentz wrote: Hello friends, I'm trying to get Mark Overmeer's Mail::Internet module to work on my system. Problem: I can't send mail using Mail::Internet's smtpsend method. Details: This is a Red Hat Linux box connecting to the internet over plain old dial-up PPP. I am using my ISP's SMT

Re: Mail::Internet Mime::Entity object $part

2004-07-09 Thread JupiterHost.Net
Wiggins d Anconia wrote: Howdy group. In a recent post someone mentioned this url: http://www.perl.com/pub/a/2004/06/10/email.html Thanks for you input with the question about some code at that url Wiggins :) I think I'm a bit closer to getting it but here is what I'm getting: my $obj = Mail::In

Re: Mail::Internet Mime::Entity object $part

2004-07-08 Thread Wiggins d Anconia
> Howdy group. > > In a recent post someone mentioned this url: > http://www.perl.com/pub/a/2004/06/10/email.html > The key to understanding that snippet is the line: "Thankfully, MIME::Entity is a MIME-aware subclass of Mail::Internet;" and specifically that little word in the middle, 'subcla

Re: Mail App

2004-07-08 Thread Brian McGraw
Mail::Box is your friend ! I'm using it with a lot of success for needs similar to yours. Here some references: http://perl.overmeer.net/mailbox/ http://search.cpan.org/~markov/Mail-Box-2.055/lib/Mail/Box.pod http://marc.theaimsgroup.com/?l=perl-mailbox I'd like to add an article that Simon Cozens

RE: Mail App

2004-07-07 Thread NYIMI Jose (BMB)
> -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Wednesday, July 07, 2004 1:18 AM > To: [EMAIL PROTECTED] > Subject: Mail App > > > Hello all, > > I have written first in PHP and then in Java an app to fetch > attachments from a remote mailbox. > > I

Re: Mail App

2004-07-06 Thread JupiterHost.Net
[EMAIL PROTECTED] wrote: Hello all, I have written first in PHP and then in Java an app to fetch attachments from a remote mailbox. I am not satisfied with Java's libraries as well as its memory requirements and speedy. Therefore I want to do the same in Perl so that it can run smoothly on my L

Re: Mail::POP3Client Doesn't Work on Win32 perl

2004-07-01 Thread Nicolay A. Vasiliev
t; Sent: Thursday, July 01, 2004 9:49 AM Subject: Re: Mail::POP3Client Doesn't Work on Win32 perl I did the same but all works fine under Win98 and ActivePerl 5.8.4. I installed the module via ppm : install Mail::POP3Client http://www.soft411.com - Excellent soft archive http:

Re: Mail::POP3Client Doesn't Work on Win32 perl

2004-06-30 Thread John
I installed the module via ppm : install Mail::POP3Client - Original Message - From: "Nicolay A. Vasiliev" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, July 01, 2004 12:50 AM Subject: Re: Mail::POP3Client Doesn't Work on Win32 perl >

Re: Mail::POP3Client Doesn't Work on Win32 perl

2004-06-30 Thread Nicolay A. Vasiliev
Hello, John! That's very strange, I use this and this works fine (and at Uniz web-server too). How did you install this module and how do you use this? I have This is perl, v5.6.1 built for MSWin32-x86-multi-thread (with 1 registered patch, see perl -V for more detail) I also have the Mail::POP

Re: mail

2004-06-29 Thread John W. Krahn
Jack Jack wrote: > > Hi All, Hello, > I have two arrays @a and @b, > each of the arrays have lotz of elements. > what i want is the first element of @a should be assigned the first element of > array @b. If you want to replace the first element of @a with the first element of @b: $a[ 0 ] = $

Re: mail

2004-06-29 Thread Wiggins d Anconia
Please use a more descriptive subject line, such as "Combining arrays of email addresses"... > > Hi All, > > I have two arrays @a and @b, > each of the arrays have lotz of elements. > what i want is the first element of @a should be assigned the first element of array @b. Do you mean the firs

Re: mail

2004-06-29 Thread Gunnar Hjalmarsson
Jack Jack wrote: I have two arrays @a and @b, each of the arrays have lotz of elements. what i want is the first element of @a should be assigned the first element of array @b. The result should be combined in one array @c, so that i can send the @c mail. I have a rough idea that we can in HASH,

Re: Mail::Sendmail

2004-06-09 Thread Wiggins d Anconia
> > Hi all! > > I am using Mail::Sendmail module to send e-mails from my perl application but the text of these messages seems to be too much long and when receiving the e-mail the text of the message is not complete. > Do yo know if there are any message size limitation? It this limitation exis

Re: Mail::Sendmail

2004-06-09 Thread mike
On Wed, 2004-06-09 at 10:59 +0200, Miguel Ãngel Morales wrote: > Hi all! > > I am using Mail::Sendmail module to send e-mails from my perl application but the > text of these messages seems to be too much long and when receiving the e-mail the > text of the message is not complete. > Do yo know

RE: My stupidity! (WAS RE: Mail::Sender weirdness)

2003-12-30 Thread Dan Muey
> --As off Tuesday, December 30, 2003 12:33 PM -0600, Dan Muey is > alleged to have said: > > >> They are doing the Right Thing and not being an open > relay. Basically > >> the server says *one* of the persons involved has to be > > > > In both cases one is always a local user. But only in one

RE: My stupidity! (WAS RE: Mail::Sender weirdness)

2003-12-30 Thread Daniel Staal
--As off Tuesday, December 30, 2003 12:33 PM -0600, Dan Muey is alleged to have said: They are doing the Right Thing and not being an open relay. Basically the server says *one* of the persons involved has to be In both cases one is always a local user. But only in one case is authentication requ

RE: My stupidity! (WAS RE: Mail::Sender weirdness)

2003-12-30 Thread Dan Muey
> [snip] > > > Right, but my question is why do I need to authenticate local > > to remote and not remote to local not why do I have to > > authenticate at all. I'm well aware of the spam relay fun! :) > > [snip] > > If you are going to authenticate remote to local, that would > mean every

RE: My stupidity! (WAS RE: Mail::Sender weirdness)

2003-12-30 Thread Shawn McKinley
[snip] > Right, but my question is why do I need to authenticate local > to remote and not remote to local not why do I have to > authenticate at all. I'm well aware of the spam relay fun! :) [snip] If you are going to authenticate remote to local, that would mean every email server trying t

RE: My stupidity! (WAS RE: Mail::Sender weirdness)

2003-12-30 Thread Dan Muey
> > > They are doing the Right Thing and not being an open relay. > Basically the server says *one* of the persons involved has to be In both cases one is always a local user. But only in one case is authentication required. > known to it. If the email is for a local user it knows that perso

Re: My stupidity! (WAS RE: Mail::Sender weirdness)

2003-12-30 Thread Daniel Staal
--As off Tuesday, December 30, 2003 11:58 AM -0600, Dan Muey is alleged to have said: So now it said "Connection not established" for the local sending to remote, which I would think would be the easiest one, especially since: Local to local is ok. Remote to local is ok. I'm not doing any remote

My stupidity! (WAS RE: Mail::Sender weirdness)

2003-12-30 Thread Dan Muey
> > > The thing is I get "Sending...Done" everytime but never a > > dleivery and > > > no hinf tof it in the logs. On one server I needed to use smtp > > > authentication but that set $@ and said connection This part of it was completely stupid on my part: I was doing if($@) { ... I added if($@

RE: Mail::Sender weirdness

2003-12-29 Thread Dan Muey
> From: "Dan Muey" <[EMAIL PROTECTED]> > > Here's wht I have: > > $r .= "Sending..."; > > eval { > > my $senderx = new Mail::Sender {smtp => $smtp, from => $from }; > > You forgot to tell Mail::Sender to die in case of an error :-) Oohhh, yeah :) Thanks > > > $senderx->Open({subject =>

Re: Mail::Sender weirdness

2003-12-29 Thread Jenda Krynicky
From: "Dan Muey" <[EMAIL PROTECTED]> > Here's wht I have: > $r .= "Sending..."; > eval { > my $senderx = new Mail::Sender {smtp => $smtp, from => $from }; You forgot to tell Mail::Sender to die in case of an error :-) > $senderx->Open({subject => $subj, to => $to }); > $senderx->SendLineEnc

Re: mail auto delete from POP server

2003-11-19 Thread Daniel Staal
--As off Wednesday, November 19, 2003 7:42 PM +0530, Ramprasad A Padmanabhan is alleged to have said: I would like to write a program that deletes all mails from my popserver which are older than 'n' days Is there a script available already. If I were to write a script using Mail::POP3Client ,

Re: mail auto delete from POP server

2003-11-19 Thread John W. Krahn
Ramprasad A Padmanabhan wrote: > > I would like to write a program that deletes all mails from my popserver > which are older than 'n' days > > Is there a script available already. If I were to write a script using > Mail::POP3Client , I would have to fetch the headers of all mails and > the pa

Re: Mail::Sender question

2003-08-04 Thread Jenda Krynicky
From: "Dan Muey" <[EMAIL PROTECTED]> > For a simple plain text message I do new( with smtp and from) then > Open (with to and subject) Since that is the minimal setup for me. > > What I'd like to do is add headers if they are specifed, after Open() > and SendLineEnc(). No. When Open() or OpenMult

RE: Mail::Sender question

2003-08-04 Thread Jenda Krynicky
From: "Dan Muey" <[EMAIL PROTECTED]> > If I do this: > > use Mail::Sender; > > my $sender = new Mail::Sender {smtp => $ip, from => $frm}; > $sender->Open({ > to => $to, > subject => $sb, > priority => 5, > cc => $cc, > bcc => $bcc, > confirm => $cfm, > }); > $sender->SendLineEnc($msg); > $s

RE: Mail::Sender question

2003-08-04 Thread Dan Muey
> > What I'd like to do is add headers if they are specifed, > after Open() > > and SendLineEnc(). > > No. When Open() or OpenMultipart() returns all headers have already > been sent and the message body is expected. There is no way to add > any more headers. > > Unlike MIME::Lite Mail::Sen

RE: Mail::Sender question

2003-08-04 Thread Dan Muey
> From: "Dan Muey" <[EMAIL PROTECTED]> > > If I do this: > > > > use Mail::Sender; > > > > my $sender = new Mail::Sender {smtp => $ip, from => $frm}; > > $sender->Open({ to => $to, > > subject => $sb, > > priority => 5, > > cc => $cc, > > bcc => $bcc, > > confirm => $cfm, > > }); > > $sen

RE: Mail Parser?

2003-07-29 Thread wiggins
On Tue, 29 Jul 2003 01:49:19 +, Pablo Fischer <[EMAIL PROTECTED]> wrote: > Hi! > > Reading the thread: "Extracting string", extracting the extension and the > basename I got sorprised that exists a module to do that (today I was doing > that

Re: Mail Parser?

2003-07-29 Thread Casey West
It was Tuesday, July 29, 2003 when Pablo Fischer took the soap box, saying: : Hi! : : Reading the thread: "Extracting string", extracting the extension and the : basename I got sorprised that exists a module to do that (today I was doing : that, to separate the basename and extension, but now th

RE: Mail::Sender question

2003-07-28 Thread Dan Muey
Ok I'll simplify the question: If I do this: use Mail::Sender; my $sender = new Mail::Sender {smtp => $ip, from => $frm}; $sender->Open({ to => $to, subject => $sb, priority => 5, cc => $cc, bcc => $bcc, confirm => $cfm, }); $sender->SendLineEnc($m

RE: Mail Sender in Perl

2003-07-09 Thread Jenda Krynicky
Subject:RE: Mail Sender in Perl From: "Dan Muey" <[EMAIL PROTECTED]> > Now if you want to use it to relay mail off a server that won't let > you relay ( IE most every server besides the one the script's > server/ISP uses) then it won't work

RE: Mail Sender in Perl

2003-07-09 Thread Dan Muey
> Hi! Howdy > > Im looking for information on how to create my own Mail > Sender that connects > to a SMTP Server, I found a few sites, so Im looking for more > information to > start. What do I want? I want to send mails from my perl > source to any smtp > server not mattering if it's ru

Re: Mail Sender in Perl

2003-07-09 Thread Jenda Krynicky
From: Pablo Fischer <[EMAIL PROTECTED]> > Im looking for information on how to create my own Mail Sender that > connects to a SMTP Server, I found a few sites, so Im looking for more > information to start. What do I want? I want to send mails from my > perl source to any smtp server not mattering

Re: Mail Sender in Perl

2003-07-09 Thread Casey West
It was Tuesday, July 08, 2003 when Pablo Fischer took the soap box, saying: : Hi! : : Im looking for information on how to create my own Mail Sender that connects : to a SMTP Server, I found a few sites, so Im looking for more information to : start. What do I want? I want to send mails from my

RE: Mail::Mailer

2003-06-09 Thread Tony Esposito
X 75080 > (972) 643-3115 > [EMAIL PROTECTED] > -Original Message----- From: Jair Santos [mailto:[EMAIL PROTECTED] Sent: Monday, June 09, 2003 12:25 PM To: [EMAIL PROTECTED] Subject: Re: Mail::Mailer Please, send the code to the list. I would like to know because have a similar pr

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 > [EMAIL PROTECTED] >

RE: Mail::Internet Reply-To Header Empty and other headers to for that matter

2003-03-12 Thread Dan Muey
I just discovered something else :: The eml that I had as an example ha sthe screwy header hash but another email I had worked. The difference is is that the one that does not work was created by a script that alphabatizes the headers like the foreach statement below. It seems then that the he

RE: Mail::sendmail

2003-02-28 Thread Dan Muey
> > Steve Few wrote: > > Hi guys, > > > > I tried to send this little test script, but my error at my > NT command > > line was, > > > > "cant' locate Mail::Sendmail.pm in @inc (@inc contains d:/perl/lib > > D:/perl/site/lib at sendmail.pl at line 3". Maybe I'm missing a previous thread but

RE: Mail::sendmail

2003-02-27 Thread Wagner, David --- Senior Programmer Analyst --- WGO
Steve Few wrote: > Hi guys, > > I tried to send this little test script, but my error at my NT > command > line was, > > "cant' locate Mail::Sendmail.pm in @inc (@inc contains d:/perl/lib > D:/perl/site/lib at sendmail.pl at line 3". > > The *.pl below is sendmail.pl. > > Any suggestions? I

RE: Mail::Sender ads .dat extension

2003-02-05 Thread Dan Muey
That was exactly it! Works like a bandit! Thank you so much Jenda, I owe you one, actually more like two or three. Your module rocks! Genius of the day goes to you today!! Dan > > > From: "Dan Muey" <[EMAIL PROTECTED]> > > I have a script that generates a pdf file from html. > > > > It genera

Re: Mail::Sender ads .dat extension

2003-02-05 Thread Jenda Krynicky
From: "Dan Muey" <[EMAIL PROTECTED]> > I have a script that generates a pdf file from html. > > It generates it for viewing perfect. > It will email it also. > > However when I email it a .dat extension is added and it won;t work in > Acrobat. I bet it's the mail client who adds the .dat extensi

RE: Mail::Sender question

2003-01-29 Thread Jenda Krynicky
From: "Dan Muey" <[EMAIL PROTECTED]> > So to send an html file attachment (from html in a variable not a > file) with images :: Which is the best way to send the images? use > disposition=inline and the cid:img1 img tag or Use > disposition=attachment and a regular img tag Well this can get a bi

RE: Mail::Sender question

2003-01-29 Thread Dan Muey
So to send an html file attachment (from html in a variable not a file) with images :: Which is the best way to send the images? use disposition=inline and the cid:img1 img tag or Use disposition=attachment and a regular img tag If neither what am I missing? $sender = new Mail::S

RE: Mail::Sender question

2003-01-29 Thread Dan Muey
> > From: "Dan Muey" <[EMAIL PROTECTED]> > > Shoot me if this is already in the docs but is it possible > to send a > > variable that contains html as an html attachement without > it being a > > file first using Mail::Sender? > > :-) > > Yes it it possible. > > $sender = new Mail::Se

Re: Mail::Sender question

2003-01-29 Thread Jenda Krynicky
From: "Dan Muey" <[EMAIL PROTECTED]> > Shoot me if this is already in the docs but is it possible to send a > variable that contains html as an html attachement without it being a > file first using Mail::Sender? :-) Yes it it possible. $sender = new Mail::Sender {...}; $sender->

RE: Mail::Sender module

2003-01-29 Thread Dan Muey
> From: "Dan Muey" <[EMAIL PROTECTED]> > > Just a quick question I can't find an answer to and I > believe one of > > our frequenters will know for sure as they are the module author > > > > I've read somewhere ( in a dreaded Oreilley book ;D ) that the Mail > > series of modules uses the

Re: Mail::Sender module

2003-01-29 Thread Jenda Krynicky
From: "Dan Muey" <[EMAIL PROTECTED]> > Just a quick question I can't find an answer to and I believe one of > our frequenters will know for sure as they are the module author > > I've read somewhere ( in a dreaded Oreilley book ;D ) that the Mail > series of modules uses the OS's native mail p

Re: Mail::IMAPClient with SSL

2003-01-18 Thread Rob Dixon
Hi Pete. Pete Emerson wrote: > I'm trying to get Mail::IMAPClient working with SSL. I can get it > working > fine without SSL. Here's my attempt: > > # assume $server, $port, $username, $password are defined correctly > my $ssl = IO::Socket::SSL->new(Proto=>'tcp', >

Re: Mail Attachment Corrupted... please help

2002-12-29 Thread Jenda Krynicky
From: "Yupapa" <[EMAIL PROTECTED]> > nevermind... found out what was wrong!! > thank you for reading BTW :p > The size of the $Buffer matters doesn't it ? ;-) > "Yupapa" <[EMAIL PROTECTED]> źśźgŠóślĽó > [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > > HiHi~ > > > > The problem is about EMAIL. > >

Re: Mail Attachment Corrupted... please help

2002-12-28 Thread Yupapa
nevermind... found out what was wrong!! thank you for reading BTW :p -- ## # Yupapa Web Hosting # Web Site - http://www.yupapa.com # Email - [EMAIL PROTECTED] ## "Yupapa" <[EMAIL PROTECTED]> ¼¶¼g©ó¶l¥ó [EMAIL PROTECTED]">news:[EMAIL P

Re: Mail Headers

2002-12-28 Thread Yupapa
thank you thank you!! -- ## # Yupapa Web Hosting # Web Site - http://www.yupapa.com # Email - [EMAIL PROTECTED] ## "Bob Showalter" <[EMAIL PROTECTED]> ? 2E4528861499D41199D200A0C9B15BC001D7E613@FRISTX">news:2E4528861499D41199D200A

RE: Mail Headers

2002-12-27 Thread Bob Showalter
> -Original Message- > From: Yupapa [mailto:[EMAIL PROTECTED]] > Sent: Friday, December 27, 2002 5:00 AM > To: [EMAIL PROTECTED] > Subject: Mail Headers > > > Hello, > > I am writing a web-based email program in Perl and need some > help about the > mail headers. > How do you remove the

Re: Mail::Sendmail & attachments

2002-12-15 Thread Jerry Rocteur
From man Mail::Sendmail Look at http://alma.ch/perl/Mail-Sendmail-FAQ.htm for additional info (CGI, examples of sending attachments, HTML mail etc...) Jerry On Sunday, Dec 15, 2002, at 12:31 Europe/Brussels, Adam Stuckey wrote: Hello everyone, Does anyone know of a way to send attach

Re: Mail::Audit + STDOUT

2002-11-26 Thread Peter Scott
Oops, Meng pointed out that the print method is inherited from Mail::Internet where of course it is documented. I suggested instead that the inheritance be documented a bit more clearly. -- Peter Scott http://www.perldebugged.com -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional comm

Re: Mail::Audit + STDOUT

2002-11-26 Thread Peter Scott
In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] (Mystik Gotan) writes: >What do you mean with piece? I know you're way better than me, but why don't >write your pieces (in which case I think output) to STDOUT. > >Like: >@array = ('piece', 'of', 'you'); >print STDOUT, @array; > >Don't think this

Re: Mail::Audit + STDOUT

2002-11-26 Thread Mystik Gotan
What do you mean with piece? I know you're way better than me, but why don't write your pieces (in which case I think output) to STDOUT. Like: @array = ('piece', 'of', 'you'); print STDOUT, @array; Don't think this really helps you, maybe others do :) -- Bob Erinkveld (Webmaster Ins

Re: Mail::Sender question

2002-11-24 Thread Jenda Krynicky
From: Goodman Kristi - kgoodm <[EMAIL PROTECTED]> > I have the code (below) that works fine with the older version of > MAIL::SENDER (v0.7.06) but will not send with the new version of > MAIL::SENDER (v0.7.14.1) . Any thoughts? Maybe if you tested the return value of MailMsg/MailFile and printed

Re: mail

2002-11-15 Thread Ramprasad A Padmanabhan
Welcome to this group So you are new to perl too ? If so start at the foundation. For your immediate task use something like Mail::Message Best of Luck Ram Thejaswi narayana wrote: Hello , I am a new member to the group and this is my first mail to the group. I have an assignment i

Re: mail

2002-11-15 Thread Felix Geerinckx
on Fri, 15 Nov 2002 08:23:57 GMT, [EMAIL PROTECTED] (Thejaswi narayana) wrote: > I have an assignment in which > i have to separate mails based on the from field. I am > working on Linux(Redhat 7.2). I want guidance from u > ppl regarding this.I want to know how i can parse a > mail header and de

Re: Mail::Sender Problem. Can Some Help Me?

2002-11-10 Thread Jenda Krynicky
From: "Palm Optins" <[EMAIL PROTECTED]> > The code I'm using is below. I tried changing the $new_contact = > $pointer->{"Contact"}; to $new_subscribe = $pointer->{"Subscribe"}; > and $ito = $new_contact; to $ito = $new_subscribe; > > When I make this change I can't get the mail to go to the sub

RE: Mail::Sendmail Module

2002-11-06 Thread Kipp, James
> > > Always try to do things within perl. Using the backticks to > system() the > external cat command will work only if the cat command exists > and is in the > $PATH. Also, it is less efficient as it involves forking > another process and > execing another file. > > While this may not

Re: Mail::Sendmail Module

2002-11-06 Thread Paul Johnson
Gary Stainburn said: > On Tuesday 05 November 2002 5:37 pm, LRMK wrote: >> there is a one problem >> $mail{message}=; only reads the first line of the file >> in the following block; >> >> $oldsep=$/; $/=undef; disable line seperation >> open(FIN,"")||die "cannot open file: $!\n"; >> $mail{me

Re: Mail::Sendmail Module

2002-11-06 Thread Gary Stainburn
On Tuesday 05 November 2002 5:47 pm, Kipp, James wrote: > > Hello everyone, > > > > I'm trying to use the Mail::Sendmail module in a script where I need a > > independent mailer. The problem I'm having is including more > > than one line > > of text in the message body. I'm not really sure how to

Re: Mail::Sendmail Module

2002-11-06 Thread Gary Stainburn
sage - > From: "Gary Stainburn" <[EMAIL PROTECTED]> > To: "Scott, Joshua" <[EMAIL PROTECTED]>; "Beginners Perl" > <[EMAIL PROTECTED]> > Sent: Tuesday, November 05, 2002 11:15 PM > Subject: Re: Mail::Sendmail Module > > > On

RE: Mail::Sendmail Module

2002-11-05 Thread Kipp, James
> > Hello everyone, > > I'm trying to use the Mail::Sendmail module in a script where I need a > independent mailer. The problem I'm having is including more > than one line > of text in the message body. I'm not really sure how to do this. The > package uses a $mail{message} = "blah" var for

Re: Mail::Sendmail Module

2002-11-05 Thread LRMK
file = ; chomp @file; $mail{message}=join("\n",@file); - Original Message - From: "Gary Stainburn" <[EMAIL PROTECTED]> To: "Scott, Joshua" <[EMAIL PROTECTED]>; "Beginners Perl" <[EMAIL PROTECTED]> Sent: Tuesday, November 05, 2002

  1   2   >