Re: Mail::Sender question

2003-08-04 Thread Jenda Krynicky
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

RE: Mail::Sender question

2003-08-04 Thread Jenda Krynicky
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

RE: Mail::Sender question

2003-08-04 Thread Dan Muey
> > 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

RE: Mail::Sender question

2003-08-04 Thread Dan Muey
> 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

RE: Mail::Sender question

2003-07-28 Thread Dan Muey
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

RE: Mail::Sender question

2003-01-29 Thread Jenda Krynicky
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

RE: Mail::Sender question

2003-01-29 Thread Dan Muey
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

RE: Mail::Sender question

2003-01-29 Thread Dan Muey
> > 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

Re: Mail::Sender question

2003-01-29 Thread Jenda Krynicky
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->

Re: Mail::Sender question

2002-11-24 Thread Jenda Krynicky
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