Re: Sending mail without a callback

2007-06-01 Thread Jenda Krynicky
From: "Ben Edwards" <[EMAIL PROTECTED]> > On 01/06/07, Jenda Krynicky <[EMAIL PROTECTED]> wrote: > > From: "Ben Edwards" <[EMAIL PROTECTED]> > > > Have been googleing for a while and don't seem to be able to find a > > > perl library which allows me to send an email without having

Re: Sending mail without a callback

2007-06-01 Thread Jenda Krynicky
From: "Ben Edwards" <[EMAIL PROTECTED]> > Have been googleing for a while and don't seem to be able to find a > perl library which allows me to send an email without having to resort > to a callback. Can someone please point me in the correct direction. What do you mean by "cal

Re: Sending mail without a callback

2007-05-31 Thread Chas Owens
On 5/31/07, Ben Edwards <[EMAIL PROTECTED]> wrote: Have been googleing for a while and don't seem to be able to find a perl library which allows me to send an email without having to resort to a callback. Can someone please point me in the correct direction. snip use Mail::Sender; my $sender

Sending mail without a callback

2007-05-31 Thread Ben Edwards
Have been googleing for a while and don't seem to be able to find a perl library which allows me to send an email without having to resort to a callback. Can someone please point me in the correct direction. Ben -- Ben Edwards - Bristol, UK If you have a problem emailing me use http://www.gurtl

Re: Sending mail

2007-02-04 Thread JupiterHost.Net
Bill Jones wrote: On 1/24/07, M. Lewis <[EMAIL PROTECTED]> wrote: I've used MIME::Lite for the mail tasks I've had up till now and it has worked very well. Now I need to send mail via a different port than port 25, say port 587. As far as I can tell, MIME::Lite does not have this capability.

Re: Sending mail

2007-01-26 Thread M. Lewis
Jenda Krynicky wrote: Date sent: Wed, 24 Jan 2007 21:54:47 -0500 From: "M. Lewis" <[EMAIL PROTECTED]> To: beginners@perl.org Subject: Sending mail I've used MIME::Lite for the mail tasks I've had up

Re: Sending mail

2007-01-25 Thread Jenda Krynicky
Date sent: Wed, 24 Jan 2007 21:54:47 -0500 From: "M. Lewis" <[EMAIL PROTECTED]> To: beginners@perl.org Subject: Sending mail > > I've used MIME::Lite for the mail tasks I've had up till now and

Re: Sending mail

2007-01-24 Thread Bill Jones
On 1/24/07, M. Lewis <[EMAIL PROTECTED]> wrote: I've used MIME::Lite for the mail tasks I've had up till now and it has worked very well. Now I need to send mail via a different port than port 25, say port 587. As far as I can tell, MIME::Lite does not have this capability. Can someone point me

Sending mail

2007-01-24 Thread M. Lewis
I've used MIME::Lite for the mail tasks I've had up till now and it has worked very well. Now I need to send mail via a different port than port 25, say port 587. As far as I can tell, MIME::Lite does not have this capability. Can someone point me to a different mailer that does have this ca

Re: Sending mail from perl with content having hyperlink

2005-03-16 Thread Wiggins d'Anconia
formation or review our http://pubsys.pearsoned.com/groups/product_information/OnTrac/ontrac_f aq.html">FAQ" ; \n" ; close MAIL; return 0; } You have not set a proper mime/type for the email client to recognize that the message is HTML, assuming it can. This is only one of the

Sending mail from perl with content having hyperlink

2005-03-16 Thread Nilay Puri, Noida
Hi All, I want to send mail thru perl. And the content is supposed to have hyperlink. Just one word lke, "FAQ" is supposed to have link to some url. I am trying like this, but I am not getting hyperlink on word FAQ. Can any one help here ? Thank You. sub send_mail { my ($to_email, $subject,

Sending Mail

2002-11-13 Thread Jessee Parker
ng from a list. They wanted things more personalized. Next I tried sending mail by opening a pipe into Sendmail itself (with the queue only and no DNS lookup flags set) and it still bogged down -- meaning it took longer than our current way of sending (we currently use an ActiveX component on a Window

RE: Sending mail under Windows 95/2000

2002-11-13 Thread Kipp, James
-Shan Chau [mailto:tchau@;shaw.ca] Sent: Tuesday, November 12, 2002 9:07 PM To: Timothy Johnson; 'Kipp, James'; 'Help on PERL' Subject: Re: Sending mail under Windows 95/2000 I did find out that the problem is with: $smtp = Net::SMTP->new('shaw.ca'); by adding &q

RE: Sending mail under Windows 95/2000

2002-11-13 Thread Jenda Krynicky
From: Aman Thind <[EMAIL PROTECTED]> > Just use "shaw" instead of "shaw.ca" as in : > > $smtp = Net::SMTP->new('shaw')||die("my woes are never ending :("); > > You are supposed to use only the name of the mail server. > shaw.ca is an invalid argument to Net::SMTP as you will fi

RE: Sending mail under Windows 95/2000

2002-11-13 Thread Aman Thind
print "$!"; after trying to connect to the server as you do. Bon Mailing :) -aman. -Original Message- From: Tin-Shan Chau [mailto:tchau@;shaw.ca] Sent: Wednesday, November 13, 2002 7:37 AM To: Timothy Johnson; 'Kipp, James'; 'Help on PERL' Subject: Re: Sen

Re: Sending mail under Windows 95/2000

2002-11-13 Thread Tin-Shan Chau
nson" <[EMAIL PROTECTED]> To: "'Kipp, James'" <[EMAIL PROTECTED]>; "'Tin-Shan Chau'" <[EMAIL PROTECTED]>; "'Help on PERL'" <[EMAIL PROTECTED]> Sent: Monday, November 11, 2002 12:26 PM Subject: RE: Sending mail unde

RE: Sending mail under Windows 95/2000

2002-11-12 Thread Timothy Johnson
s you are running. Is one of them "Internet Mail", or are you using "Microsoft Exchange Server"? -Original Message- From: Tin-Shan Chau [mailto:tchau@;shaw.ca] Sent: Tuesday, November 12, 2002 6:07 PM To: Timothy Johnson; 'Kipp, James'; 'Help on PERL

RE: Sending mail under Windows 95/2000

2002-11-11 Thread Timothy Johnson
:16 PM To: 'Tin-Shan Chau'; 'Help on PERL' Subject: RE: Sending mail under Windows 95/2000 $smtp = Net::SMTP->new('shaw.ca'); # connect to an > SMTP server > > $smtp->mail( '[EMAIL PROTECTED]' );# use the sender'

RE: Sending mail under Windows 95/2000

2002-11-11 Thread Kipp, James
$smtp = Net::SMTP->new('shaw.ca'); # connect to an > SMTP server > > $smtp->mail( '[EMAIL PROTECTED]' );# use the sender's > > address here > > $smtp->to('[EMAIL PROTECTED]');# recipient's address > > $smtp->data(); # Start the mail >

RE: Sending mail under Windows 95/2000

2002-11-11 Thread Kipp, James
> > $smtp = Net::SMTP->new('shaw.ca'); # connect to an SMTP server > $smtp->mail( '[EMAIL PROTECTED]' );# use the sender's > address here > $smtp->to('[EMAIL PROTECTED]');# recipient's address > $smtp->data(); # Start the mail > > c

Sending mail under Windows 95/2000

2002-11-11 Thread Tin-Shan Chau
I have been trying to get the sample program in the ActiveState documentation to work, but without much success. Here is the code: >>> use Net::SMTP; $smtp = Net::SMTP->new('shaw.ca'); # connect to an SMTP server $smtp->mai

Re: sending mail from Perl redirecting from a file

2002-05-29 Thread Janek Schleicher
Lz wrote at Tue, 28 May 2002 17:57:57 +0200: > Hi guys, > > open TMP, ">/home/dev/perl/mail_queue/$filename" or die "Can't create file: $!"; > > I read an incoming file, modify it and save it in the file, as seen above. > > Later on, I'd like to send the above generated file: > > I try the fo

Re: sending mail from Perl redirecting from a file

2002-05-28 Thread Gautam
lz wrote: > Hi guys, > > open TMP, ">/home/dev/perl/mail_queue/$filename" or > die "Can't create file: $!"; > > I read an incoming file, modify it and save it in the > file, as seen above. > > Later on, I'd like to send the above generated file: > > I try the following, but it doesn't work. >

Re: sending mail from Perl redirecting from a file

2002-05-28 Thread A. Rivera
Try system("cat home/dev/perl/mail_queue/$filename | mailx -s \"test\" $mailAddress "); Regards, Agustin Rivera Webmaster, Pollstar.com / PollstarOnline.com - Original Message - From: "lz" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tues

Re: sending mail from Perl redirecting from a file

2002-05-28 Thread Ricardo Derbes
May 28, 2002 12:57 PM Subject: sending mail from Perl redirecting from a file > Hi guys, > > open TMP, ">/home/dev/perl/mail_queue/$filename" or > die "Can't create file: $!"; > > I read an incoming file, modify it and save it in the > file, as see

sending mail from Perl redirecting from a file

2002-05-28 Thread lz
Hi guys, open TMP, ">/home/dev/perl/mail_queue/$filename" or die "Can't create file: $!"; I read an incoming file, modify it and save it in the file, as seen above. Later on, I'd like to send the above generated file: I try the following, but it doesn't work. open MSG, "|mailx -s \"test\" $mai

Re: problem sending mail

2002-04-12 Thread Luke Sibala
;,"\n"; > > print MAIL "To: $to_name ",'<',"$to_addr",'>',"\n"; > > print MAIL "Subject: $subject\n"; > > print MAIL "$content\n"; > > close(MAIL); > >

Re: problem sending mail

2002-04-11 Thread Skymarket Postmaster
> Hi all > I am trying to send a mail with the following code and the last print > statement doesn't print, ie, the mail is not sent. > This code is called on submitting a form on the web > > open(MAIL, "/usr/sbin/sendmail -oi -t") || die "Can't open mail"; > print MAIL < To:

Re: problem sending mail

2002-04-10 Thread Ask Bjoern Hansen
[EMAIL PROTECTED] (T3tsu0) writes: > sub send_mail { > open(MAIL,"|$mail_prog -t") || &error("unable to send mail to: > $to_name - $to_addr"); [...] > close(MAIL); you really want to put error checking on the close() too. In many cases you won't be told until then if the open fa

RE: problem sending mail

2002-04-10 Thread t3tsu0
print MAIL "Subject: $subject\n"; print MAIL "$content\n"; close(MAIL); print "Mail to: $to_name - $to_addr, completed."; } -Original Message- From: Aman Raheja [mailto:[EMAIL PROTECTED]] S

Re: problem sending mail

2002-04-10 Thread fliptop
subject\n"; > print MAIL "$content\n"; > close(MAIL); > print "Mail to: $to_name - $to_addr, completed."; > } have you guys ever considered using mime::lite? it simplifies sending mail, including attachments, etc. http://search.cpan.or

Re: problem sending mail

2002-04-10 Thread Elaine -HFB- Ashton
Aman Raheja [[EMAIL PROTECTED]] quoth: *>Hi all *>I am trying to send a mail with the following code and the last print *>statement doesn't print, ie, the mail is not sent. *>This code is called on submitting a form on the web *> *>open(MAIL, "/usr/sbin/sendmail -oi -t") || di

Re: problem sending mail

2002-04-10 Thread Aman Raheja
t; >To: [EMAIL PROTECTED], [EMAIL PROTECTED], >[EMAIL PROTECTED], [EMAIL PROTECTED] >Subject: problem sending mail >Date: Wed, 10 Apr 2002 12:25:46 -0500 > >Hi all >I am trying to send a mail with the following code and the last print >statement doesn't print, ie, the mail i

problem sending mail

2002-04-10 Thread Aman Raheja
Hi all I am trying to send a mail with the following code and the last print statement doesn't print, ie, the mail is not sent. This code is called on submitting a form on the web open(MAIL, "/usr/sbin/sendmail -oi -t") || die "Can't open mail"; print MAIL <"; ---

Re: Sending Mail

2002-02-21 Thread Johannes Franken
On Thu, Feb 21, 2002 at 08:46:54AM -, Darren Simpson wrote: > try FormMail > http://worldwidemart.com/scripts/formmail.shtml Be careful with formmail, for there are lots of script kiddies out there, trying to abuse it. Although I don't have it on my webserver, people occasionally try to explo

Re: Sending mail

2002-02-21 Thread Bhanu Prakash
al Message- From: Bhanu Prakash [mailto:[EMAIL PROTECTED]] Sent: 20 February 2002 16:59 To: [EMAIL PROTECTED] Subject: Sending Mail Hi, I'm new to Perl and am trying to write some cgi programs in Perl. Currently I'm developing a tool in which , when a user submits a form, the i

Re: Sending Mail.

2002-02-21 Thread Bhanu Prakash
know, Chris Zampese. [EMAIL PROTECTED] - Original Message - From: "Johannes Franken" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, February 21, 2002 9:38 PM Subject: Re: Sending Mail > On Wed, Feb 20, 2002 at 08:58:41AM -0800, Bhanu Prakash wrote:

Re: Sending Mail

2002-02-21 Thread Chris Zampese
02 9:38 PM Subject: Re: Sending Mail > On Wed, Feb 20, 2002 at 08:58:41AM -0800, Bhanu Prakash wrote: > > when a user submits a form, the input entered by him should be > > mailed to the address he specifies in one of teh input fileds.! > > If you put that one on a publi

RE: Sending Mail

2002-02-21 Thread Darren Simpson
try FormMail http://worldwidemart.com/scripts/formmail.shtml -Original Message- From: Bhanu Prakash [mailto:[EMAIL PROTECTED]] Sent: 20 February 2002 16:59 To: [EMAIL PROTECTED] Subject: Sending Mail Hi, I'm new to Perl and am trying to write some cgi programs in Perl. Curr

Re: Sending Mail

2002-02-21 Thread Johannes Franken
On Wed, Feb 20, 2002 at 08:58:41AM -0800, Bhanu Prakash wrote: > when a user submits a form, the input entered by him should be > mailed to the address he specifies in one of teh input fileds.! If you put that one on a public webserver, you should consider a way to prevent bad people from usin

Re: Sending Mail

2002-02-20 Thread Elaine -HFB- Ashton
Bhanu Prakash [[EMAIL PROTECTED]] quoth: *>Hi, *> I'm new to Perl and am trying to write some cgi *>programs in Perl. *>Currently I'm developing a tool in which , when a user *>submits a form, *>the input entered by him should be mailed to the *>address he specifies *>in one of teh input file

Sending Mail

2002-02-20 Thread Bhanu Prakash
Hi, I'm new to Perl and am trying to write some cgi programs in Perl. Currently I'm developing a tool in which , when a user submits a form, the input entered by him should be mailed to the address he specifies in one of teh input fileds.! Does anybody have some sample scripts which does so

Re: Sending mail without SMTP.

2001-12-18 Thread Jenda Krynicky
From: Ryan Guy <[EMAIL PROTECTED]> > How do I send mail without and SMTP server. My company uses a > microsoft exchange server and I cannot figure out how to get the > Mail::Sendmail module to work. If you know for sure the Exchange server doesn't have SMTP turned on you can

Sending mail without SMTP.

2001-12-18 Thread Ryan Guy
How do I send mail without and SMTP server. My company uses a microsoft exchange server and I cannot figure out how to get the Mail::Sendmail module to work. -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Sending mail on a Win32 system.

2001-11-29 Thread William . Crain
When I did this, I used the Net:SMTP module that comes with the ActiveState distribution. Of course, you need access to an SMTP server. Otherwise, it was very easy to use. > I've seen all sorts of ways to send mail on a *nix system, but I can't >find a good module to use with Win32. Do

RE: Sending mail on a Win32 system.

2001-11-29 Thread Fennelly, Marion [ETHGB]
2001 15:15 > To: [EMAIL PROTECTED] > Subject: Sending mail on a Win32 system. > > > I've seen all sorts of ways to send mail on a *nix > system, but I can't > find a good module to use with Win32. Does anyone have any > suggestions on > how to send an

Re: Sending mail on a Win32 system.

2001-11-29 Thread Luke Bakken
Mail::Sendmail works fine - perhaps you don't have the SMTP server setting correct or no access to a server? Luke On Thu, 29 Nov 2001, Aaron Petry wrote: > I've seen all sorts of ways to send mail on a *nix system, but I can't > find a good module to use with Win32. Does anyone have any

Sending mail on a Win32 system.

2001-11-29 Thread Aaron Petry
I've seen all sorts of ways to send mail on a *nix system, but I can't find a good module to use with Win32. Does anyone have any suggestions on how to send an e-mail message on win32 systems? Mail::Sendmail doesn't seem to work. -- To unsubscribe, e-mail: [EMAIL PROTECTED] For add

Re: Sending mail using PERL with file as body of message

2001-08-01 Thread Peter Scott
At 11:57 AM 8/1/01 -0400, Rice, Elizabeth A. wrote: >I've been looking for a tool to send a email to multiple recipients, using a >file as input to the body of the message, that will working on multiple >operating systems, and is fairly simple since I'm new at this. > >I've investiaged Mail::Mail

RE: Sending mail using PERL with file as body of message

2001-08-01 Thread Bob Showalter
> -Original Message- > From: Rice, Elizabeth A. [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, August 01, 2001 11:58 AM > To: '[EMAIL PROTECTED]' > Subject: Sending mail using PERL with file as body of message > > > ... > Here's the basi

Sending mail using PERL with file as body of message

2001-08-01 Thread Rice, Elizabeth A.
I've been looking for a tool to send a email to multiple recipients, using a file as input to the body of the message, that will working on multiple operating systems, and is fairly simple since I'm new at this. I've investiaged Mail::Mailer and Net::SMTP, but maybe because I'm a newbie these s

Re: sending mail (learning perl program)

2001-07-30 Thread Mike Rodgers
Doh. I don't know how many times I looked at it and still didn't see the word 'mail' prior to my username. Thanks to all who responded. Mike Marcelo Ramos wrote: > > El Sun, 29 Jul 2001 10:31:11 -0500 > Mike Rodgers <[EMAIL PROTECTED]> escribió: > > >On page 23 of Learning Perl, there are comm

Re: sending mail (learning perl program)

2001-07-30 Thread Peter Scott
At 10:56 AM 7/30/01 +, Mel Matsuoka wrote: >At 01:39 PM 07/30/2001 -0700, [EMAIL PROTECTED] wrote: > >> "Stephen P. Potter" <[EMAIL PROTECTED]> said: > > > >> | > >> | open (MAIL, "|/usr/sbin/sendmail $email") > >> | > >> | to which you should by the way add > >> | > >> | or

Re: sending mail (learning perl program)

2001-07-30 Thread Mel Matsuoka
At 10:56 AM 07/30/2001, Mel Matsuoka wrote: >At 01:39 PM 07/30/2001 -0700, [EMAIL PROTECTED] wrote: >>> "Stephen P. Potter" <[EMAIL PROTECTED]> said: >> >>> | >>> | open (MAIL, "|/usr/sbin/sendmail $email") >>> | >>> | to which you should by the way add >>> | >>> | or die "sen

Re: sending mail (learning perl program)

2001-07-30 Thread Mel Matsuoka
At 01:39 PM 07/30/2001 -0700, [EMAIL PROTECTED] wrote: >> "Stephen P. Potter" <[EMAIL PROTECTED]> said: > >> | >> | open (MAIL, "|/usr/sbin/sendmail $email") >> | >> | to which you should by the way add >> | >> | or die "sendmail: $!\n"; >> >> This probably does not do what y

Re: sending mail (learning perl program)

2001-07-30 Thread smoot
> "Stephen P. Potter" <[EMAIL PROTECTED]> said: > | > | open (MAIL, "|/usr/sbin/sendmail $email") > | > | to which you should by the way add > | > | or die "sendmail: $!\n"; > > This probably does not do what you think it does. It is almost always > worthless to check the s

Re: sending mail (learning perl program)

2001-07-30 Thread Stephen P. Potter
Lightning flashed, thunder crashed and Peter Scott <[EMAIL PROTECTED]> whispered: | Yes, but if you create the above using something like | | open (MAIL, "|/usr/sbin/sendmail $email") | | to which you should by the way add | | or die "sendmail: $!\n"; This probably does not d

Re: sending mail (learning perl program)

2001-07-30 Thread smoot
> Peter Scott <[EMAIL PROTECTED]> said: > Yes, but if you create the above using something like > > open (MAIL, "|/usr/sbin/sendmail $email") > > to which you should by the way add > > or die "sendmail: $!\n"; I left the "die" off for brevity. Good point. > then you now ne

Re: sending mail (learning perl program)

2001-07-29 Thread Peter Scott
At 08:30 PM 7/29/01 -0700, [EMAIL PROTECTED] wrote: > > Gia Elise Barboza <[EMAIL PROTECTED]> said: > > > open(mail, "|mail barbozag\@msu.edu"); > > print mail "bad news: guessed \n"; > > close (mail); > >This works, but if you are not certain of the contents of the email message >(e.g. writing a

Re: sending mail (learning perl program)

2001-07-29 Thread smoot
> Gia Elise Barboza <[EMAIL PROTECTED]> said: > open(mail, "|mail barbozag\@msu.edu"); > print mail "bad news: guessed \n"; > close (mail); This works, but if you are not certain of the contents of the email message (e.g. writing a CGI interface to let a user compose and send an email message)

Re: sending mail (learning perl program)

2001-07-29 Thread Gia Elise Barboza
The code below does not include the pipe char. Without it the code does not work. Hope this helps, Regards Gia. open(mail, "|mail barbozag\@msu.edu"); print mail "bad news: guessed \n"; close (mail); Mike Rodgers wrote: > On page 23 of Learning Perl, there are commands to mail a message out.

Re: sending mail (learning perl program)

2001-07-29 Thread Marcelo Ramos
El Sun, 29 Jul 2001 10:31:11 -0500 Mike Rodgers <[EMAIL PROTECTED]> escribió: >On page 23 of Learning Perl, there are commands to mail a message out. >I have tried to manually send myself a message with mail and it works. >The program does not work. I'm not sure why. Here is the code: > >open

Re: sending mail

2001-07-29 Thread Rachel Coleman
> Hi friends, I wanna send mails with the results of some perl scripts. I've > installed Debian GNU/Linux with Apache, Perl & sendmail. Do I need some > extra module? I think you *can* just print stuff directly to sendmail. However, I found Net::SMTP to be useful, if a little fiddly. Mail::Mail

sending mail (learning perl program)

2001-07-29 Thread Mike Rodgers
On page 23 of Learning Perl, there are commands to mail a message out. I have tried to manually send myself a message with mail and it works. The program does not work. I'm not sure why. Here is the code: open(MAIL, "mail EMAIL_ADDRESS_HERE"); print MAIL "bad news: $somename guessed $somegues

sending mail

2001-07-27 Thread er_pelle
Hi friends, I wanna send mails with the results of some perl scripts. I've installed Debian GNU/Linux with Apache, Perl & sendmail. Do I need some extra module? Thanks for your help -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Sending Mail with attachments

2001-07-14 Thread scott lutz
Sweet. I will try that out! Thanks for the help. _ Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com. -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Sending Mail with attachments

2001-07-13 Thread scott lutz
I am trying to send an email, ( which works), with an attachement (which was a blank file, but is now nothing). I have previous versions of this code, but this is the latest below. I was trying to use the Mail::Sender mod, but it gave me the blank file. Does anyone have any assistance or lin