Ask a Question related to PERL Miscellaneous, Design and Development.
-
DB Coordinator for CS #1
Create electronic newsletters and email to all people in an excel spreadsheet
Hi Guys
We are using Windows platform and active perl in our organisation. We want
to create electronic newsletters(which embed images as well) and want to
mailout all the people whose email addresses are in an excel spreadsheet.
Can you give some advice about what modules/items we should use in Active
perl to create/mailout electronic newsletters?. How can we achieve this
task?. Are there any particular way to do this in active perl?. What
modules/sections of Active perl we should need?.Can you give some reference
or help?
Thank you
Jo
DB Coordinator for CS Guest
-
HTML email newsletters
well i dont know how many people use Contribute to do newsletters, but as long as they are web pages on your server and contribute can access your... -
HTML email newsletters
well i dont know how many people use Contribute to do newsletters, but as long as they are web pages on your server and contribute can access your... -
HTML email newsletters
Hi -- I have this same question. I would also like to know if there are any user examples of newsletters made with Contribute. This would help me... -
email newsletters
How do you email a newsletter like the one sent by macromedia.com? I've tried several ways but nothing has worked, so far. Do I need a special... -
Create electronic newsletters and email to all people(including webmail addresses) in an excel spreadsheet
Hi Guys We are using Windows platform and Active perl in our organisation. We want to create electronic newsletters(which embed images/html as... -
Gregory Toomey #2
Re: Create electronic newsletters and email to all people in an excel spreadsheet
"DB Coordinator for CS" <dbcoordinator@cws.org.nz> wrote in message
news:FujVa.95500$JA5.2100992@news.xtra.co.nz...reference> Hi Guys
>
> We are using Windows platform and active perl in our organisation. We want
> to create electronic newsletters(which embed images as well) and want to
> mailout all the people whose email addresses are in an excel spreadsheet.
> Can you give some advice about what modules/items we should use in Active
> perl to create/mailout electronic newsletters?. How can we achieve this
> task?. Are there any particular way to do this in active perl?. What
> modules/sections of Active perl we should need?.Can you give someHeres a couple of simple examples of sending email as HTML using MIME::Lite.> or help?
>
> Thank you
> Jo
>
>
You could put your newsletter in HTML format.
Also see [url]http://search.cpan.org/dist/MIME-Lite/lib/MIME/Lite.pm[/url]
The easiest way to get the email addresses from Excel is cut/paste into
notepad.
#!/usr/bin/perl
use strict;
require MIME::Lite;
require MIME::Lite::HTML;
my $msg;
$msg = MIME::Lite->new(
To =>'user@bigpond.com',
From =>'newsletter@sadasdasd.com.au',
Subject =>'HTML with in-line images!',
Type =>'multipart/related'
);
$msg->attach(Type => 'text/html',
Data => qq{ <body>
Here's <i>my</i> image:
<img src="http://asdasd.com.au/images/asdasd.gif">
</body> }
);
$msg->send;
my $mailHTML = new MIME::Lite::HTML
From => 'MIME-Lite@alianwebserver.com',
To => 'user@bigpond.com',
Subject => 'test';
my $MIMEmail = $mailHTML->parse('http://asdsad.com.au');
$MIMEmail->send;
gtoomey
Gregory Toomey Guest
-
DB Coordinator for CS #3
Re: Create electronic newsletters and email to all people in an excel spreadsheet
"Gregory Toomey" <NOSPAM@bigpond.com> wrote in message
news:bg4i1r$kn34c$1@ID-202028.news.uni-berlin.de...want> "DB Coordinator for CS" <dbcoordinator@cws.org.nz> wrote in message
> news:FujVa.95500$JA5.2100992@news.xtra.co.nz...> > Hi Guys
> >
> > We are using Windows platform and active perl in our organisation. Wespreadsheet.> > to create electronic newsletters(which embed images as well) and want to
> > mailout all the people whose email addresses are in an excelActive> > Can you give some advice about what modules/items we should use inMIME::Lite.> reference> > perl to create/mailout electronic newsletters?. How can we achieve this
> > task?. Are there any particular way to do this in active perl?. What
> > modules/sections of Active perl we should need?.Can you give some>> > or help?
> >
> > Thank you
> > Jo
> >
> >
> Heres a couple of simple examples of sending email as HTML using> You could put your newsletter in HTML format.
> Also see [url]http://search.cpan.org/dist/MIME-Lite/lib/MIME/Lite.pm[/url]
> The easiest way to get the email addresses from Excel is cut/paste into
> notepad.
>
>
> #!/usr/bin/perl
> use strict;
>
> require MIME::Lite;
> require MIME::Lite::HTML;
>
>
> my $msg;
> $msg = MIME::Lite->new(
> To =>'user@bigpond.com',
> From =>'newsletter@sadasdasd.com.au',
> Subject =>'HTML with in-line images!',
> Type =>'multipart/related'
> );
> $msg->attach(Type => 'text/html',
> Data => qq{ <body>
> Here's <i>my</i> image:
> <img src="http://asdasd.com.au/images/asdasd.gif">
> </body> }
> );
> $msg->send;
>
>
>
> my $mailHTML = new MIME::Lite::HTML
> From => 'MIME-Lite@alianwebserver.com',
> To => 'user@bigpond.com',
> Subject => 'test';
>
> my $MIMEmail = $mailHTML->parse('http://asdsad.com.au');
> $MIMEmail->send;
>
>
> gtoomey
>
>
DB Coordinator for CS Guest
-
DB Coordinator for CS #4
Re: Create electronic newsletters and email to all people in an excel spreadsheet
Thanks Greg. This really helped me. I couldn't install the MIME::Lite::HTML
module. I use ppm for module installation. I was able to install only
MIME::Lite.
Cheers
Jo
"Gregory Toomey" <NOSPAM@bigpond.com> wrote in message
news:bg4i1r$kn34c$1@ID-202028.news.uni-berlin.de...want> "DB Coordinator for CS" <dbcoordinator@cws.org.nz> wrote in message
> news:FujVa.95500$JA5.2100992@news.xtra.co.nz...> > Hi Guys
> >
> > We are using Windows platform and active perl in our organisation. Wespreadsheet.> > to create electronic newsletters(which embed images as well) and want to
> > mailout all the people whose email addresses are in an excelActive> > Can you give some advice about what modules/items we should use inMIME::Lite.> reference> > perl to create/mailout electronic newsletters?. How can we achieve this
> > task?. Are there any particular way to do this in active perl?. What
> > modules/sections of Active perl we should need?.Can you give some>> > or help?
> >
> > Thank you
> > Jo
> >
> >
> Heres a couple of simple examples of sending email as HTML using> You could put your newsletter in HTML format.
> Also see [url]http://search.cpan.org/dist/MIME-Lite/lib/MIME/Lite.pm[/url]
> The easiest way to get the email addresses from Excel is cut/paste into
> notepad.
>
>
> #!/usr/bin/perl
> use strict;
>
> require MIME::Lite;
> require MIME::Lite::HTML;
>
>
> my $msg;
> $msg = MIME::Lite->new(
> To =>'user@bigpond.com',
> From =>'newsletter@sadasdasd.com.au',
> Subject =>'HTML with in-line images!',
> Type =>'multipart/related'
> );
> $msg->attach(Type => 'text/html',
> Data => qq{ <body>
> Here's <i>my</i> image:
> <img src="http://asdasd.com.au/images/asdasd.gif">
> </body> }
> );
> $msg->send;
>
>
>
> my $mailHTML = new MIME::Lite::HTML
> From => 'MIME-Lite@alianwebserver.com',
> To => 'user@bigpond.com',
> Subject => 'test';
>
> my $MIMEmail = $mailHTML->parse('http://asdsad.com.au');
> $MIMEmail->send;
>
>
> gtoomey
>
>
DB Coordinator for CS Guest
-
Gregory Toomey #5
Re: Create electronic newsletters and email to all people in an excel spreadsheet
"DB Coordinator for CS" <dbcoordinator@cws.org.nz> wrote in message
news:vwmVa.95700$JA5.2104020@news.xtra.co.nz...MIME::Lite::HTML> Thanks Greg. This really helped me. I couldn't install theWhen I did this last your I installed the two modules in a local directory.> module. I use ppm for module installation. I was able to install only
> MIME::Lite.
>
> Cheers
> Jo
My ISP at the time did not have them installed.
gtoomey
Gregory Toomey Guest



Reply With Quote

