Thread Net::SMPT_auth (1 answers)
Opened by styx-cc at 2007-08-02 16:27

styx-cc
 2007-08-02 16:27
#97318 #97318
User since
2006-05-20
533 Artikel
BenutzerIn

user image
Hallo, habe mir folgenden Code geschrieben um eine Email zu versenden:

Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/perl -w
use strict;
use Net::SMTP_auth;

my $smtp = Net::SMTP_auth->new('serveradresse.de') || die $!;
#print $smtp->auth_types();
$smtp->auth('LOGIN', 'webXYZp1', 'passwort') || die $!;

$smtp->mail($ENV{USER}) || die $!;
$smtp->to('irgendwer-im-netz@web.de');

$smtp->data();
$smtp->datasend("To: irgendwer-im-netz\@web.de\n");
$smtp->datasend("\n");
$smtp->datasend("A simple test message\n");
$smtp->dataend() || die $!;

$smtp->quit;


Dooferweise kommen die Mails nie an..
Passwort und Benutzername habe ich natuerlich geprueft, mit evolution z.B. kann ich mails senden.
Er stribt mir auf Zeile 6, ohne verueftige Fehlermeldung (Died at email.txt line 6.).
Net::SMPT_auth 0.08

MfG
Pörl.

View full thread Net::SMPT_auth