Sorry...i didnt get u.
There is a problem but coz i tried all the premutations within multipart and there still seems to be problem. The problem is i cant show u how the issue output looks..one has to try out that on the ipad/iphone itself to see the issue. if any case i am doing anything wrong....do mention coz i really want to get this issue resolved.

Sample code: use Mail::Sender;
$sender = new Mail::Sender;

if (ref $sender->OpenMultipart({
from => 'someone@somewhere.net', to => 'abc@xyz.com',
subject => 'Embedded Image Test',
ctype => "text/html",
boundary => 'boundary-test-1',
encoding => 'base64',
multipart => 'mixed'})) {
$sender->Body({msg => 'Hello World <img src="cid:smile1"
/>'}); $sender->Attach(
{description => 'pdf',
# ctype => 'appledouble',
encoding => 'base64',
disposition => "attachment;
filename=\"AWD.pdf\";", file => '../AWD.pdf'
});
$sender->Attach({
# description => 'ed\'s JPG',
# ctype => 'appledouble',
encoding => 'base64',
disposition => "inline; filename=\"28055.JPG
\";\r\nContent-ID: <smile1>",
file => '../28055.JPG'
}); $sender->Close() or die "Close failed! $Mail::Sender::Error\n";
} else {
die "Cannot send mail: $Mail::Sender::Error\n";
}

This same problem had arised to php either.....heres the link...

http://stackoverflow.com/questions/9564045/phpmailer-email-with-inline-images-and-pdf-attachments
thnks in advance.


In reply to Re^2: mail::sender - email header - IPAD by themonk
in thread mail::sender - email header - IPAD by themonk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.