nickcave25 has asked for the wisdom of the Perl Monks concerning the following question:
It sends off a message to a selected address as it steps through an array of email addresses. Nothing fancy.
Here's the part I need help with:
where $someAddress equals theuser\@herdomain.comopen handleMAIL, "|mail $someAddress"; print handleMAIL "This here is the content."; print handleMAIL "etc."; close handleMAIL;
It's going to run on a BSDI BSD OS 3.1 system (running Stronghold/2.2 Apache/1.2.5 C2NetUS/2004) (not as a daemon, just when I flip the switch.)
THE PROBLEM I am faced with is that anything mailed this way shows up as coming from the actual username for the account I have access to (a cryptic string of characters and numbers) instead of something user-friendly like "newsletter@ourdomain.com".
Are there any parameters I can add to the open handleMAIL, "|mail $someAddress"; statement to cause the FROM address to display the more user-friendly address. Or is there some other way to specify the FROM address.
Any suggestions will be appreciated in a major way.
If I can fix this one issue, it will mean yet another victory for Perl within my somewhat Micros~1-centric workplace.
Thanks.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Perl-based Newsletter Script Needs Your Help
by le (Friar) on Jul 13, 2000 at 14:12 UTC | |
|
Re: Perl-based Newsletter Script Needs Your Help
by c-era (Curate) on Jul 13, 2000 at 15:02 UTC | |
|
Re: Perl-based Newsletter Script Needs Your Help
by davorg (Chancellor) on Jul 13, 2000 at 14:14 UTC | |
|
Re: Perl-based Newsletter Script Needs Your Help
by ikitat (Acolyte) on Jul 13, 2000 at 17:35 UTC | |
|
Re: Perl-based Newsletter Script Needs Your Help
by Michalis (Pilgrim) on Jul 14, 2000 at 01:18 UTC | |
|
Re: Perl-based Newsletter Script Needs Your Help
by nickcave25 (Acolyte) on Jul 14, 2000 at 15:29 UTC |