To direct your outgoing mail through your ISP mail server rather than from the local installation of sendmail, you would do better to use some of the functions provided to you by the
Mail::Mailer and
Net::SMTP - For example:
my ($smtp) = Mail::Mailer->new("smtp", Server => "127.0.0.1");
$smtp->open({
'To' => $toaddress,
'From' => $fromaddress,
'Subject' => "subject",
});
print $smtp "body\n\n";
$smtp->close;
You would naturally need to change the IP address of 127.0.0.1 for that of your network mail server.
An alternate method, would be still to use the local sendmail installation, but instead to set up the smarthost (DS) mail relaying in the configuration file such that all mail is forwarded through a mail server of your choice, rather than attempting direct mail delivery.
Update : If you don't have rights to edit the main sendmail configuration file, you can specify an alternate configuration file with the
-C command line switch or possibly specify the DS-smarthost option through the
-O/o command line switch.
Ooohhh, Rob no beer function well without!
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.