dous any one have an idea howto make an html header
with net::smtp ?
and where to post it
thx fietse,
example net::smtp script
#####
$smtp = Net::SMTP->new('smtp.server');
$smtp->mail('from mail adress');
$smtp->to('to mail adress');
$smtp->data();
$smtp->datasend("To: vissible to adress"
;
$smtp->datasend("Subject: subjet"
;
$smtp->datasend("mail"
;
$smtp->dataend();
$smtp->quit;
with net::smtp ?
and where to post it
thx fietse,
example net::smtp script
#####
$smtp = Net::SMTP->new('smtp.server');
$smtp->mail('from mail adress');
$smtp->to('to mail adress');
$smtp->data();
$smtp->datasend("To: vissible to adress"
$smtp->datasend("Subject: subjet"
$smtp->datasend("mail"
$smtp->dataend();
$smtp->quit;