in reply to Re: Envia E-mail Sendmail
in thread Send Mail
#!/usr/bin/perl use strict; use warnings; use Mail::Sender; our $sender = new Mail::Sender {smtp => 'smtp.yourdomain.com', from => + 'your.address@yourdomain.com'}; sub EnviaEmail { my ($mail, $subject, $msg, $file) = @_; $sender->MailFile({to => '$mail', subject => '[$subject]', msg +=> "\n$msg\n", file => '$file'}); return; } ...
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Envia E-mail Sendmail
by Jenda (Abbot) on Aug 07, 2003 at 13:45 UTC |