Ask a Question related to PERL Modules, Design and Development.
-
Jane Humbrey #1
When use MIME::Lite module the attachment clip sign not shown for attachments
G'day. How can we show the attachment clip sign in receiver's inbox?.
Currently the receiver actually receive the attchment, but it won't show up
as a clip sign in Outlook/Outlook Express. Many people can't recognize the
attachment, because it won't show up as a paper clip sign.
use MIME::Lite::HTML;
use MIME::Lite;
my $mailHTML = new MIME::Lite::HTML
From => "dlcoordinator\@cs.org.au",
To => "$receiver",
Subject => "Solomon Islands leaflet attached";
my $MIMEmail = $mailHTML->parse("file://C|/test/coverpage/coverexec.htm");
$MIMEmail->attach(
Type => 'binary',
Path =>'SolomonIs.leaflet.doc' ,
Filename => 'SolomonIs.leaflet.doc' ,
Disposition => 'attachment'
);
$MIMEmail->send_by_smtp('sd.xdra.co.au');
Cheers
Jo
Jane Humbrey Guest
-
Having trouble installing MIME::Lite module
I have Perl installed on my Windows PC and I am trying to install module MIME::Lite. I run the command "perl -MCPAN -e "install 'MIME::Lite'"" and... -
SOAP::Lite : Problem of # sign added by SOAP::Lite in the sent SOAPActionstring
Hello, I have a problem with a SOAP client written in Perl (source at the end). I've tried both ways (by commenting TRIAL ONE or SECOND TRIAL),... -
When use MIME::Lite module the attachment clip sign not shownfor attachments
On Fri, 29 Aug 2003 04:28:28 GMT "William Alexander Segraves" <wsegrave@mindspring.com> wrote: Yes and no. The MIME::Lite module allows you to... -
Attachment not sent of MIME format
hi i am sending the attachment using cdo nts in MIME format. The problem is that the mail is going but the attachment is not send and the... -
MIME::Lite html-attachment broken
Christian Grauer <cgrauer@netscript.de> wrote: Where's the data content (e.g. test1.htm) so we can reproduce your problem? Chris --... -
Jane Humbrey #2
When use MIME::Lite module the attachment clip sign not shown for attachments
G'day. How can we show the attachment clip sign in receiver's inbox?.
Currently the receiver actually receive the attchment, but it won't show up
as a clip sign in Outlook/Outlook Express. Many people can't recognize the
attachment, because it won't show up as a paper clip sign.
use MIME::Lite::HTML;
use MIME::Lite;
my $mailHTML = new MIME::Lite::HTML
From => "dlcoordinator\@cs.org.au",
To => "$receiver",
Subject => "Solomon Islands leaflet attached";
my $MIMEmail = $mailHTML->parse("file://C|/test/coverpage/coverexec.htm");
$MIMEmail->attach(
Type => 'binary',
Path =>'SolomonIs.leaflet.doc' ,
Filename => 'SolomonIs.leaflet.doc' ,
Disposition => 'attachment'
);
$MIMEmail->send_by_smtp('sd.xdra.co.au');
Cheers
Jo
Jane Humbrey Guest
-
Jane Humbrey #3
Re: When use MIME::Lite module the attachment clip sign not shown for attachments
Hi James
I changed the type as you said, but the paper clip didn't appear to show the
attachments in Outlook/Outlook Express : (.
Jo
"James Willmore" <jwillmore@cyberia.com> wrote in message
news:e0160815.0308262232.29f48582@posting.google.c om...news:<ZjT2b.128239$JA5.3010567@news.xtra.co.nz>...> "Jane Humbrey" <janehumbrey@hotmail.com> wrote in messageup> > G'day. How can we show the attachment clip sign in receiver's inbox?.
> > Currently the receiver actually receive the attchment, but it won't showthe> > as a clip sign in Outlook/Outlook Express. Many people can't recognize$mailHTML->parse("file://C|/test/coverpage/coverexec.htm");> > attachment, because it won't show up as a paper clip sign.
> >
> > use MIME::Lite::HTML;
> > use MIME::Lite;
> >
> > my $mailHTML = new MIME::Lite::HTML
> > From => "dlcoordinator\@cs.org.au",
> > To => "$receiver",
> > Subject => "Solomon Islands leaflet attached";
> >
> > my $MIMEmail =>> > $MIMEmail->attach(
> > Type => 'binary',
> > Path =>'SolomonIs.leaflet.doc' ,
> > Filename => 'SolomonIs.leaflet.doc' ,
> > Disposition => 'attachment'
> >
> > );
> > $MIMEmail->send_by_smtp('sd.xdra.co.au');
> Change your 'Type' to 'application/msword'. Because it's 'binary',
> it's going to look like, well, a binary file to the email client.
> Since the module is MIME::Lite, it's going to 'assign' a MIME type to
> your file - based upon RFC-2046 for MIME messages. If this were, say,
> a CSV file that you wanted users to open with Excel, the 'Type' would
> be 'application/vnd.ms-excel'.
>
> I did something like this using just MIME::Lite. I changed the MIME
> type to show the attachment as an Excel file - but it was really a CSV
> file with an xls extention. It worked great.
>
> HTH
>
> Jim
Jane Humbrey Guest
-
James Willmore #4
Re: When use MIME::Lite module the attachment clip sign not shown for attachments
"Jane Humbrey" <janehumbrey@hotmail.com> wrote in message news:<KY93b.129228$JA5.3037479@news.xtra.co.nz>...
Okay ... I wanted to do something similar ... and normally, I don't do> Hi James
>
> I changed the type as you said, but the paper clip didn't appear to show the
> attachments in Outlook/Outlook Express : (.
>
> Jo
this, but .... here is some code for you to try.
First, change the directory to what you are using, and fill in valid
'To' and 'From' address, and change the SMTP server from 'localhost'
to what you normally use/need to use.
Second, I used Novell GroupWise and Sylpheed as the email clients. As
stated in the MIME::Lite and MIME::Lite::HTML documentation and proven
during my tests, each client will handle email attachments
differently. Plus, you will notice I tried to add text to the
begining of the email - which was the only thing that showed properly
in the email clients. So, I commented the lines out. The code will
produce inline HTML AND attachments. However, I was not able to test
using Outlook.
I personally want to get this working properly, because I would like
to use this in work I do. I'll post anything else I know here -and- I
might just email the author to see if the usage is correct -and-
double check the RFC's to see if the output produced and what the
RFC's jive. So far, they do.
I didn't use the MIME::Lite::HTML module because that only produces
inline HTML. From the OP, it appears that you wanted an attachment.
I also used LWP and HTML::TokeParse to gather the original document.
The code is commented for you (and any one else's) review.
HTH
Jim
==TESTED, BUT NEEDS VARIABLES UPDATED==
#!/usr/bin/perl -w
#use strict pragma
use strict;
#use the following modules
use LWP::Simple;
use HTML::TokeParser;
use MIME::Lite;
#declare lexical variables (I do it right Tad? :) )
my ($directory,$text,$html,$parser,%images,$mimeLite) ;
#what directory are file files located
$directory = '<fill in directory here>';
#set the text (aka body) of message
$text = 'Here is the latest add for ....';
#get the HTML document (as if you were using a browser) using LWP
#notice the 'file://' - this is the same as if you typed in
#file:///<some directory>/<some file>
$html = get("file://$directory/index.htm");
#declare a new HTML::TokeParser object - use the HTML file
#you just got as the document to parse
$parser = HTML::TokeParser->new(\$html);
#while parsing through the document, get each token
#(aka tag w/ attributes)
while (my $token = $parser->get_token) {
#if the tag is a start tag AND is the 'img' tag ....
if ($token->[0] eq 'S' && $token->[1] eq 'img') {
#store the 'src' attribute (aka the image file name)
#in the hash %images
$images{ $token->[2]{'src'} }++;
}
}
#this will allow MIME::Lite to verify the address you're sending to
$MIME::Lite::AUTO_VERIFY=1;
#create a new MIME::Lite object with
#the following attributes
#The 'Reply-To' is NOT required, but nice in case this script
#runs as a daemon/service - if you set this, when a user
#clicks the 'Reply', the 'Reply-To' address is used instead of
#the 'From' address
$mimeLite = new MIME::Lite(
From=>'FROM',
To=>'TO',
Subject=>'TEST',
Type=>'multipart/related',
'Reply-To'=>'RELPY-TO',
);
#THIS PART DOES NOT WORK PROPERLY
#Now, start building your MIME encoded attachments
#First, attach the body ...
#$mimeLite->attach(
# Type=>'text/plain',
# Data=>"$text",
# Encoding=>'quoted-printable'
#);
#now, the images ...
foreach my $img(keys %images){
#now, put $img into $new_img
my $new_img = $img;
#this regex removes the leading '/' from the filename
#it may NOT be required - it was for my test ;)
$new_img =~ s/^\///;
#get rid of any path information - just get the filename
$new_img =~ s/^.*[\/](\w+\.\w+)$/$1/;
#according to the MIME::Lite documentation, in order to get
#any images to show up, we need to insert 'cid:' into the
'src'
#tag - we'll to that here for each image with a regex
$html =~ s/\"$img\"/\"cid:$new_img\"/g;
#now create the attachment ...
$mimeLite->attach(
Type=>'image/gif',
Path=>"$directory/$img",
Id=>"$new_img",
Encoding=>'base64',
Disposition=>'attachment',
Filename=>"$new_img"
);
}
#now, attach the HTML file ...
#for your purposes, you may want to change the 'Type' to
#what was suggested in the previous post and the 'Encoding'
#could be removed if you do that or changed to
#'base64'
$mimeLite->attach(
Type=>'text/html',
Data=>"$html",
Encoding=>'quoted-printable',
Disposition=>'attachment',
Filename=>'myhtml.htm'
);
#send the message
$mimeLite->send('smtp', 'localhost');
James Willmore Guest
-
William Alexander Segraves #5
Re: When use MIME::Lite module the attachment clip sign not shown for attachments
"Jane Humbrey" <janehumbrey@hotmail.com> wrote in message
news:ZjT2b.128239$JA5.3010567@news.xtra.co.nz...up> G'day. How can we show the attachment clip sign in receiver's inbox?.
> Currently the receiver actually receive the attchment, but it won't showYour problem does not appear to be a Perl problem.> as a clip sign in Outlook/Outlook Express. Many people can't recognize the
> attachment, because it won't show up as a paper clip sign.
You should get the receiver to do this: In Outlook Express, do "View +
Columns" and check the Attachment Checkbox. Then move the Attachment Column
(Checkbox) to the position (order) he/she desires.
If the Attachment Checkbox is not selected at the client end, why would you
expect the receiver to be able to see the paper clip symbol?
Bill Segraves
William Alexander Segraves Guest
-
James Willmore #6
Re: When use MIME::Lite module the attachment clip sign not shown for attachments
"Jane Humbrey" <janehumbrey@hotmail.com> wrote in message news:<85x3b.130648$JA5.3080006@news.xtra.co.nz>...
Bill Segraves posted a suggestion as well - maybe you should give that> Hi James
>
> Thanks for your code. I changed all details as you said. The script was run
> OK. But the output was an email with all were attachments(html file,image
> file, word file). The paper clip didn't show up in the Outlook/Outlook
> Express. I really want the html and the image should be in the message in
> correct places. I want to attach only a word file as attachment and the
> paper clip sign to be shown in the receiver's inbox. Thank you once again
> for your help.
>
> Cheers
> Jo
a shot and see what happens. I'm begining to believe as Bill does
that this is not a Perl issue. If the MIME encoding is correct
(which, as far as I can tell from the code I posted previously is),
that the issue resides with the usage of the email client. Sorry :(
Jim
James Willmore Guest



Reply With Quote

