473,769 Members | 5,900 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

error in Net::SMTP Can't open server

63 New Member
Hi, I'm trying some code to send a mail with my script. This is it:

Expand|Select|Wrap|Line Numbers
  1. #!/usr/bin/perl
  2. use Net::SMTP;
  3.  
  4. my $smtp_server='62.193.245.15';
  5. my $smtp = Net::SMTP->new($smtp_server) or die "Can't Open server\n";
  6. $smtp->mail('joao.correia@tvn.pt');
  7. $smtp->to('jcor@sapo.pt');
  8. $smtp->auth("joao.correia@tvn.pt","*password*");
  9. $smtp->data();
  10. $smtp->datasend("To: jcor@sapo.pt\n");
  11. $smtp->datasend("From: joao.correia@tvn.pt\n");
  12. $smtp->datasend("Subject: test\n");
  13. $smtp->datasend("\n");
  14. $smtp->datasend("some test text");
  15. $smtp->dataend();
  16.  
  17. $smtp->quit;
My problem is that it allways die when creating the object. It's not possible to create the objectwith the IP instead of smtp."something "?
Is this IP that I have in my thunderbird and it works perfectly!

Am I failing something?

Can someone give me an hand?

Thanks,

João Correia
Jan 28 '08
13 6812
jcor
63 New Member
I now trying to use this module MIME::Lite;

Seems pretty easy but doesn't work either.
my code is just:
Expand|Select|Wrap|Line Numbers
  1. #!/usr/bin/perl
  2.  
  3. use MIME::Lite;
  4.  
  5.     ### Create a new single-part message, to send a GIF file:
  6.     $msg = MIME::Lite->new(
  7.         From     =>'joao.correia.tvnet@gmail.com',
  8.         To       =>'jcor@net.sapo.pt',
  9.         Subject  =>'Helloooooo, nurse!',
  10.         Data     =>"How's it goin', eh?"
  11.     );
  12. MIME::Lite->send( 'smtp','smtp.gmail.com',Timeout=>60,
  13.           Debug=>1);
  14.  
  15. $msg ->send();
  16.  
  17. print" a mensagem foi enviada com sucesso\n";
  18.  
The debugger gives me this:

Expand|Select|Wrap|Line Numbers
  1. joao@joao-UBUNTU:~/Desktop$ perl Send
  2. MIME::Lite::SMTP>>> MIME::Lite::SMTP
  3. MIME::Lite::SMTP>>>   Net::SMTP(2.31)
  4. MIME::Lite::SMTP>>>     Net::Cmd(2.29)
  5. MIME::Lite::SMTP>>>       Exporter(5.58)
  6. MIME::Lite::SMTP>>>     IO::Socket::INET(1.29)
  7. MIME::Lite::SMTP>>>       IO::Socket(1.29)
  8. MIME::Lite::SMTP>>>         IO::Handle(1.25)
  9. MIME::Lite::SMTP=GLOB(0x83fae0c)<<< 220 mx.google.com ESMTP m5sm11074509gve.11
  10. MIME::Lite::SMTP=GLOB(0x83fae0c)>>> EHLO localhost.localdomain
  11. MIME::Lite::SMTP=GLOB(0x83fae0c)<<< 250-mx.google.com at your service, [81.193.137.56]
  12. MIME::Lite::SMTP=GLOB(0x83fae0c)<<< 250-SIZE 28311552
  13. MIME::Lite::SMTP=GLOB(0x83fae0c)<<< 250-8BITMIME
  14. MIME::Lite::SMTP=GLOB(0x83fae0c)<<< 250-STARTTLS
  15. MIME::Lite::SMTP=GLOB(0x83fae0c)<<< 250 ENHANCEDSTATUSCODES
  16. MIME::Lite::SMTP=GLOB(0x83fae0c)>>> MAIL FROM:<joao.correia.tvnet@gmail.com>
  17. MIME::Lite::SMTP=GLOB(0x83fae0c)<<< 530 5.7.0 Must issue a STARTTLS command first m5sm11074509gve.11
  18. SMTP mail() command failed: 
  19. 5.7.0 Must issue a STARTTLS command first m5sm11074509gve.11
  20.  
Do you guys knows what's the problem here?

And do I allways have to use an "external smtp" (if you understand what I mean)? is not possible to simply send an e-mail for localhost, something like that? (maybe this is just a dummy question, I'm not really sure)

Thanks for your time anyway

João
Jan 30 '08 #11
numberwhun
3,509 Recognized Expert Moderator Specialist
Expand|Select|Wrap|Line Numbers
  1. #!/usr/bin/perl
  2.  
  3. use MIME::Lite;
  4.  
  5.     ### Create a new single-part message, to send a GIF file:
  6.     $msg = MIME::Lite->new(
  7.         From     =>'joao.correia.tvnet@gmail.com',
  8.         To       =>'jcor@net.sapo.pt',
  9.         Subject  =>'Helloooooo, nurse!',
  10.         Data     =>"How's it goin', eh?"
  11.     );
  12. MIME::Lite->send( 'smtp','smtp.gmail.com',Timeout=>60,
  13.           Debug=>1);
  14.  
  15. $msg ->send();
  16.  
  17. print" a mensagem foi enviada com sucesso\n";
  18.  

Where do you do authentication? I would not doubt that when accessing an external service like this, that you are going to have to do some sort of authentication with a user name and password. If not, then anybody, account or not, could send email through there. You should read up on each module and how they handle the authentication. I think that has been the issue all along, that you aren't authenticating to send/receive email.

Regards,

Jeff
Jan 30 '08 #12
jcor
63 New Member
Hi guys,
My script is working now,
my code is (adapted from one from de internet):

Expand|Select|Wrap|Line Numbers
  1. #!/usr/bin/perl
  2. use strict;
  3. use MIME::Lite;
  4.  
  5. #
  6. $to = "joao.correia.tvnet\@gmail.com";
  7. $from = "joao_correia_0509\@yahoo.com.br";
  8. $subject = "Consegui!!!! Email enviado através de um script Perl";
  9. $message = "Se ler esta mensagem é porque está mesmo a funcionar!!!";
  10.  
  11.  
  12. # send email
  13. email($to, $from, $subject, $message);
  14.  
  15. # email function
  16. sub email {
  17.      # get incoming parameters
  18.      local ($to, $from, $subject, $message) = @_;
  19.  
  20.     # create a new message
  21.     $msg = MIME::Lite->new(
  22.         From => $from,
  23.         To => $to,
  24.         Subject => $subject,
  25.         Data => $message
  26.     );
  27.  
  28.  # send the email
  29.     MIME::Lite->send('smtp', 
  30.           'smtp.mail.yahoo.com.br', Timeout => 60, Debug =>1,
  31.           AuthUser=>'joao_correia_0509', AuthPass=>'***pass***');
  32.  
  33.    $msg->send();
  34.  
  35. }
  36.  
thanks again for your help

João
Jan 31 '08 #13
numberwhun
3,509 Recognized Expert Moderator Specialist
Now, if you were to investigate the documentation for Net::SMTP, you would probably see something similar to allow you to put the authentication user name and pwd in there as well.

Regards,

Jeff
Jan 31 '08 #14

Sign in to post your reply or Sign up for a free account.

Similar topics

0
3065
by: Almir | last post by:
I hate this Net::SMTP stuff, everything works fine but for the suject field. I see no way of having it show in an email when sent. Has anyone had this problem, can anyone explain why there are no documentations on smtp or better ones at least. I just need the subject field to show. $smtp = Net::SMTP->new('some.your.com'); $smtp->mail ($mailfrom); #the administrator's email goes here $smtp->to('mine@your.com');
2
13704
by: RandRace | last post by:
I'm having some problems with a little script i wrote using net::smtp. I originally wrote it in linux where it works perfectly. I tried to use it from windows the other day and it doesn't work. It connects to the server and prints the banner but will not send mail. Here is my script: use Net::SMTP; my $smtp = Net::SMTP->new('smtp.comcast.net') or die "Can't Open server"!";
0
1332
by: peterson | last post by:
I was trying to send asp.net-smtp mail of UTF-8 unicode international character contents. When I opened the mailbox contents was broken. I am using html format too. Am I missing something?
1
1824
by: neog | last post by:
I'm having a problem with Net::Smtp. Does the datasend() method have problems sending strings containing single quotes? Like I stored the string "Germany's biggest bank, hired" in a hash and it prints out fine when i retrieve the scalar value. But i do datasend($msg) and when i open the email I see something like "Germany's bigges! t bank, hired". These "!" are popping all over the place. Any thoughts would be greatly appreciated.
4
2372
by: patrickinminneapolis | last post by:
Hi guys, I'm trying to write an emailer, but I can't manage to construct the object properly. Here's what I've got: #!/usr/local/bin/perl -w use Net::SMTP; $smtp = Net::SMTP->new('mailhost'); print $smtp->domain,"\n"; $ perl mailer.txt Can't call method "domain" on an undefined value at mailer.txt line 6.
1
8498
by: =?Utf-8?B?V0o=?= | last post by:
Hi, I'm looking for a ASP.NET open source social network software to build a web-site. so far, I have no luck. If you have any information, can you help? Thanks. WJ
5
5303
by: jimhill10 | last post by:
I have a perl script that creates an email attachment file from POST data on a web page. This works just fine. I want to customize the email body to contain all of the text data from the file itself. I thought this would be just a matter of using the $smtp->datasend($POSTvalues) with the $values coming from the names on the web page posting the data. Can someone show me what the correct code snippet would be? Here is my code: ...
1
2697
by: wootmaster | last post by:
I'm writing a script that will run a few tests on a given mail server, it's meant to test to see if VRFY and EXPN is enabled or not. However, when I use "verify" to test to see if VRFY is enabled on the given host, if VRFY is disabled on the server the "verify" function will still return true/1. I used the Debug function to check, and it shows that VRFY is disabled on the mail server. Is there a reason or a way around this? snippet of...
5
7349
by: veralee | last post by:
I'm in dire need to use Net::SMTP. The server no longer uses "sendmail". I found an example of using Net::SMTP but I have to also include a user name and password for the server. The host provided that, and I discovered that the method call is, auth ( USERNAME, PASSWORD ). But I don't know where to put that call. The host isn't into Perl and I'm on my own about this. Could someone be so extremely kind as to show me a simple example of...
0
9586
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10210
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10043
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9990
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9861
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8869
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7406
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5298
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
2
3561
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.