Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
Unfortunately, no matter how I try that --extra-arg just get lost somewhere in the middle and never reaches Sendmail.pm send function. Am I missing something here? Please.#!/usr/bin/perl use strict; use Email::Simple; use Email::Simple::Creator; use Email::Send; my $email_raw = Email::Simple->create( header => [ From => 'x@x.org', To => 'y@y.org', Subject => 'z' ], body => 'a', ); # send it my $sender = Email::Send->new({mailer => 'Sendmail'}); $sender->send($email_raw, '--extra-arg');
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Email::Send::Sendmail (again) problem
by ikegami (Patriarch) on Jun 01, 2009 at 21:46 UTC | |
by Anonymous Monk on Jun 01, 2009 at 22:50 UTC |