From: "Dan Muey" <[EMAIL PROTECTED]>
> For a simple plain text message I do new( with smtp and from) then
> Open (with to and subject) Since that is the minimal setup for me.
>
> What I'd like to do is add headers if they are specifed, after Open()
> and SendLineEnc().
No. When Open() or OpenMult
From: "Dan Muey" <[EMAIL PROTECTED]>
> If I do this:
>
> use Mail::Sender;
>
> my $sender = new Mail::Sender {smtp => $ip, from => $frm};
> $sender->Open({
> to => $to,
> subject => $sb,
> priority => 5,
> cc => $cc,
> bcc => $bcc,
> confirm => $cfm,
> });
> $sender->SendLineEnc($msg);
> $s
> > What I'd like to do is add headers if they are specifed,
> after Open()
> > and SendLineEnc().
>
> No. When Open() or OpenMultipart() returns all headers have already
> been sent and the message body is expected. There is no way to add
> any more headers.
>
> Unlike MIME::Lite Mail::Sen
> From: "Dan Muey" <[EMAIL PROTECTED]>
> > If I do this:
> >
> > use Mail::Sender;
> >
> > my $sender = new Mail::Sender {smtp => $ip, from => $frm};
> > $sender->Open({ to => $to,
> > subject => $sb,
> > priority => 5,
> > cc => $cc,
> > bcc => $bcc,
> > confirm => $cfm,
> > });
> > $sen
Ok I'll simplify the question:
If I do this:
use Mail::Sender;
my $sender = new Mail::Sender {smtp => $ip, from => $frm};
$sender->Open({
to => $to,
subject => $sb,
priority => 5,
cc => $cc,
bcc => $bcc,
confirm => $cfm,
});
$sender->SendLineEnc($m
From: "Dan Muey" <[EMAIL PROTECTED]>
> So to send an html file attachment (from html in a variable not a
> file) with images :: Which is the best way to send the images? use
> disposition=inline and the cid:img1 img tag or Use
> disposition=attachment and a regular img tag
Well this can get a bi
So to send an html file attachment (from html in a variable not a file) with images ::
Which is the best way to send the images?
use disposition=inline and the cid:img1 img tag
or
Use disposition=attachment and a regular img tag
If neither what am I missing?
$sender = new Mail::S
>
> From: "Dan Muey" <[EMAIL PROTECTED]>
> > Shoot me if this is already in the docs but is it possible
> to send a
> > variable that contains html as an html attachement without
> it being a
> > file first using Mail::Sender?
>
> :-)
>
> Yes it it possible.
>
> $sender = new Mail::Se
From: "Dan Muey" <[EMAIL PROTECTED]>
> Shoot me if this is already in the docs but is it possible to send a
> variable that contains html as an html attachement without it being a
> file first using Mail::Sender?
:-)
Yes it it possible.
$sender = new Mail::Sender {...};
$sender->
From: Goodman Kristi - kgoodm <[EMAIL PROTECTED]>
> I have the code (below) that works fine with the older version of
> MAIL::SENDER (v0.7.06) but will not send with the new version of
> MAIL::SENDER (v0.7.14.1) . Any thoughts?
Maybe if you tested the return value of MailMsg/MailFile and printed
10 matches
Mail list logo