Main > Free Download Search >

Free how is html mail different from plain text software for linux

how is html mail different from plain text

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 7541
XML From Plain Text 0.03

XML From Plain Text 0.03


XML From Plain Text is a program that reads a file of plain text that contains relatively simple markup, and outputs an XML file more>>
XML From Plain Text (xfpt) is a program that reads a file of plain text that contains relatively simple markup, and outputs an XML file. It is intended to simplify the management of XML data.
The project is not a program that attempts to turn a plain text document into XML. Markup within text is introduced by ampersand characters, but is otherwise "soft". You can define what follows the ampersand, for example, &" to generate a "quote" element. There is also a macro facility that allows for higher level concepts such as chapters, displays, tables, etc.
Enhancements:
- The macro library has been extended to include preface, appendix, colophon, footnote, figure, and table.
- The program has one new directive to enable it to handle "nested" sections such as footnotes.
<<less
Download (0.13MB)
Added: 2007-07-07 License: GPL (GNU General Public License) Price:
840 downloads
HTML::FromText 2.0.5

HTML::FromText 2.0.5


HTML::FromText is a Perl module that can convert plain text to HTML. more>>
HTML::FromText is a Perl module that can convert plain text to HTML.

SYNOPSIS

use HTML::FromText;
text2html( $text, %options );

# or

use HTML::FromText ();
my $t2h = HTML::FromText->new( %options );
my $html = $t2h->parse( $html );

HTML::FromText converts plain text to HTML. There are a handfull of options that shape the conversion. There is a utility function, text2html, thats exported by default. This function is simply a short- cut to the Object Oriented interface described in detail below.

<<less
Download (0.013MB)
Added: 2006-08-05 License: Perl Artistic License Price:
1175 downloads
Yahoo! Mail Notifier 0.9.9.6

Yahoo! Mail Notifier 0.9.9.6


Yahoo! Mail Notifier is an extension which notifies you when new messages arrive in your Yahoo mailbox. more>>
Yahoo! Mail Notifier is an extension which notifies you when new messages arrive in your Yahoo mailbox.
Notification options include: customizable sound, notification alert, status bar and toolbar icon.
Also allows the user to map different mouse buttons to open Yahoo Mail in different tabs,windows,etc.
System requirements:
- Firefox 0.9.x - 3.0a3 ALL
- Mozilla 1.7 - 1.8 ALL
- SeaMonkey 1.0 - 1.5a ALL
Version restrictions:
1. The extension uses the Yahoo! Companion feed to check for new mail so only new messages received since last viewing your Yahoo Mailbox will be counted as new.
2. On some accounts, Yahoo! never updates the companion feed page when new mail arrives (you never see new mail notifications). This is a bug with your Yahoo account so contact Yahoo to have it fixed. If you dont get new mail notification when installing Yahoos official toolbar (toolbar.yahoo.com), then you are experiencing this problem.
3. Only the username marked as default will be checked for new mail. The extension can only check for mail if the user remains logged in. Logging out on a Yahoo page while the extension is actively checking will cause the extension to log back in to the default userss account the next time it checks for email. This is also true if you have sinced logged into another Yahoo account on a Yahoo page. This is done to prevent the extension from getting into a weird state where it thinks one user is logged in when in fact another user is. This will be fixed more thoroughly when multi-user support is added. If you dont want this to occur, use the extensions "log out" command instead of logging out on the Yahoo page which will log the default user out and stop checking for new mail.
4. Choosing a sound file to play on new mail has been reported to not work on Macs. The default sound is said to work. I dont have a Mac so I cant test this.
5. Im told that installing this extension in FreeBSD Firefox causes Firefox to crash. Im unable to test this as I dont have FreeBSD. Generally though all browser crashes should be reported to Mozilla since this is extension should be incapable of crashing the browser unless the browser is buggy.
<<less
Download (0.091MB)
Added: 2007-07-17 License: MPL (Mozilla Public License) Price:
840 downloads
Simple dictionary application 1.04

Simple dictionary application 1.04


Simple dictionary application allows users to use any plain text dictionary. more>>
Simple dictionary application project allows users to use any plain text dictionary that is UTF-8 with one translation per line and words separated by tabulators.

Applications allow users to use free bilingual dictionaries offline. All dictionaries have to be UTF-8 files with one translation per line and words separated by tabulators. Hundreds of free bilingual dictionaries can be created and downloaded from the Universal dictionary system. Universal dictionary currently interconnects 33 languages (Afrikaans, Basque, Bulgarian, Croatian, Czech, Danish, Dutch, English, Esperanto, Estonian, Finnish, French, German, Greek, Hungarian, Icelandic, Indonesian, Italian, Japanese, Japanese Romaji, Latin, Lithuanian, Norwegian Bokmal, Polish, Portuguese, Romanian, Russian, Simplified Chinese, Slovak, Slovenian, Spanish, Swedish, Turkish)

<<less
Download (0.25MB)
Added: 2006-11-27 License: GPL (GNU General Public License) Price:
1381 downloads
MS Word to plaintext converter 0.1

MS Word to plaintext converter 0.1


MS Word to plaintext converter is a service menue easily converts MS Word documents to plain text files. more>>
MS Word to plaintext converter is a service menue easily converts MS Word documents to plain text files. The generated text file is named *.doc.txt.

I hope it is as useful for you as it is for me.

<<less
Download (MB)
Added: 2006-04-26 License: GPL (GNU General Public License) Price:
1283 downloads
XML-Grammar-Screenplay 0.04

XML-Grammar-Screenplay 0.04


XML-Grammar-Screenplay is a processor for well-formed plain text representing Screenplays. more>>
XML-Grammar-Screenplay is a processor for well-formed plain text representing Screenplays.

This in turn is rendered into a specialized XML format, and that in turn can be converted to HTML or DocBook/XML.

INSTALLATION

To install this module, run the following commands:

perl Build.PL
./Build
./Build test
./Build install

<<less
Download (0.015MB)
Added: 2007-06-12 License: GPL (GNU General Public License) Price:
871 downloads
HTML::Mail 0.02_05

HTML::Mail 0.02_05


HTML::Mail is a Perl extension for sending emails with embedded HTML and media. more>>
HTML::Mail is a Perl extension for sending emails with embedded HTML and media.

SYNOPSIS

use HTML::Mail;

### initialisation
my $html_mail = HTML::Mail->new(
HTML => http://www.cpan.org,
Text => This is the text representation of the webpage http://www.cpan.org,
From => me@myhost.org,
To => you@yourhost.org,
Subject => CPAN webpage);

### Send the email ("inherited" from MIME::Lite)
$html_mail->send();

#### Remove text representation
$html_mail->set_Text();

### Rebuild the message and send
$html_mail->build->send;

### Serialise to file for later reuse
$html_mail->dump_file(/tmp/cpan_mail.data);

### Restore from file
my $restored = HTML::Mail->restore_file(/tmp/cpan_mail.data);

HTML::Mail is supposed to help with the task of sending emails with HTML and images (or other media) embedded or externally linked. It uses MIME::Lite for all MIME related jobs, HTML::Parser to find related files and change the URIs and LWP::UserAgent to retrieve the related files.

Email can be multipart/alternative if both HTML and Text content exist and multipart/related if there is only HTML content.

If all you want is to send text-only email, you probably wont find this module useful at all, or at best a huge overkill.

<<less
Download (0.015MB)
Added: 2006-10-23 License: Perl Artistic License Price:
1096 downloads
HTML::Truncate 0.11

HTML::Truncate 0.11


HTML::Truncate is a Perl module that can truncate HTML by percentage or character count while preserving well-formedness. more>>
HTML::Truncate is a Perl module (beta software) that can truncate HTML by percentage or character count while preserving well-formedness.

ABSTRACT

When working with text it is convenient and common to want to truncate strings to make them fit a desired context. E.g., you might have a menu that is only 100px wide and prefer text doesnt wrap so youd truncate it around 15-30 characters, depending on preference and typeface size. This is trivial with plain text using substr but with HTML it is somewhat difficult because whitespace has fluid significance and open tags that are not properly closed destroy well-formedness and can wreck an entire layout.

HTML::Truncate attempts to account for those two problems by padding truncation for spacing and entities and closing any tags that remain open at the point of truncation.

SYNOPSIS

use strict;
use HTML::Truncate;

my $html =

We have to test something.

;

my $html_truncate = HTML::Truncate->new();
$html_truncate->chars(20);
$html_truncate->ellipsis($readmore);
print $html_truncate->truncate($html), $/;

# or

my $ht = HTML::Truncate->new(utf => 1,
chars => 1_000,
);
print $ht->truncate($html), $/;

<<less
Download (0.010MB)
Added: 2007-01-10 License: Perl Artistic License Price:
1017 downloads
HTML::Embperl 1.3.6

HTML::Embperl 1.3.6


HTML::Embperl is a Perl module for building dynamic Websites with Perl. more>>
HTML::Embperl is a Perl module for building dynamic Websites with Perl.

SYNOPSIS

Embperl is a Perl extension module which gives you the power to embed Perl code directly in your HTML documents (like server-side includes for shell commands).

If building more than a single page, you may also want to take a look at "perldoc EmbperlObject" which lets you build your website out of small reusable objects.

Additionally, "perldoc HTML::Embperl::Mail" allows you to send the resulting page via email.

<<less
Download (0.35MB)
Added: 2006-09-01 License: Perl Artistic License Price:
1148 downloads
HTML::FromMail::Format::OODoc 0.10

HTML::FromMail::Format::OODoc 0.10


HTML::FromMail::Format::OODoc is a Perl module that can convert messages into HTML using OODoc::Template. more>>
HTML::FromMail::Format::OODoc is a Perl module that can convert messages into HTML using OODoc::Template.

INHERITANCE

HTML::FromMail::Format::OODoc
is a HTML::FromMail::Format
is a Mail::Reporter

SYNOPSIS

my $fmt = HTML::FromMail->new
( templates => ...
, formatter => OODoc # but this is also the default
);

Convert messages into HTML using OODoc::Template. This is a simple template system, which focusses on giving produced pieces of HTML a place in larger HTML structures.

<<less
Download (0.024MB)
Added: 2006-08-15 License: Perl Artistic License Price:
1165 downloads
Mail 2 Wordpress 1.02

Mail 2 Wordpress 1.02


Mail 2 Wordpress is an SMTP mailrobot for posting wordpress blog entries via SMTP mail. more>>
Mail 2 Wordpress is an SMTP mailrobot for posting wordpress blog entries via SMTP mail.

<<less
Download (0.007MB)
Added: 2005-12-20 License: GPL (GNU General Public License) Price:
1404 downloads
BoboMail 0.6pre1

BoboMail 0.6pre1


BoboMail is a so called webmail application, which provides mail access through a web interface. more>>
BoboMail is a so called webmail application, which provides mail access through a web interface.
It is distributed under the GNU GPL. See COPYING in the package or go to http://www.gnu.org for details.
The first version of BoboMail was used for about a year and a half in the intranet of the Computer Club Ostfriesland (one of Germanys largest computer clubs, see http://www.cco-ev.de if you understand German). I wrote my own webmailer, because at that time only some Perl scripts were available, which were not easy to customize (e.g. German interface).
The name of BoboMail comes from former name of ZPublisher, a cgi framework used by the developer.
I hope you will find BoboMail usefull. Please send complaints (e.g. spelling mistakes), criticism, security advices, suggestions, praises and everything else to ich@henning-schroeder.de or visit me (Henning) on my personal webpage at http://www.henning-schroeder.de/en Important acknowledgement: This product includes software developed by Digital Creations for use in the Z Object Publishing Environment (htt://www.zope.org).
The BoboMail distribution contains Zopes ZPublisher and ZTemplates. These compoments underly the Zope Public License (ZPL). They are packages with BoboMail for easier installation. BoboMail is hosted at Sourceforge (http://sourceforge.net). If you are interested in BoboMail development please visit the its webpage at http://bobomail.sourceforge.net Besides I want to make BoboMail even more modular so that my stuff can be used for a mailinglist archiver or a web-forum. Attention: I really would like to know where you will use BoboMail. Please tell me your success stories
Main features:
- read, write, reply, forward, delete and bounce messages
- send and receive attachments
- decodes quoted-printable, base64 and uuencoded
- handles HTML-mails properly (with inline images!)
- does not need Javascript
- direct support for the following MIME types: message/rfc822, message/delivery-status, multipart/alternative, multipart/mixed, multipart/report, multipart/related, multipart/digest, text/plain, text/html, text/x-vcard, image/jpeg, text/rfc822-headers, image/png, image/x-xpixmap, image/gif
- works with POP3-servers and partially IMAP4 (spool-files under development)
- easy to modify and customize through HTML-templates
- modular design provides easy interface for other authentication methods and mail protocols
- provides optionally its own fast multithreading webserver (BoboMailHTTPD)
- multi-lingual support (i18n) - currently English, Brazilian Portuguese, Finish, Spanish and German
- and its 100% Python
Enhancements:
- with the help from Ken Causey the annoying first-login-bug is fixed now :-)
- IMAP support for uw-imapd, expects additional folders in $HOME/Mail
- now runs with Python 2.x without problems
- new look, using nicer template inspired by zope.org
- and some other small bug fixes (see cvs if you like)
<<less
Download (0.29MB)
Added: 2006-06-10 License: GPL (GNU General Public License) Price:
1232 downloads
Email::Find 0.10

Email::Find 0.10


Email::Find allows you to find RFC 822 email addresses in plain text. more>>
Email::Find allows you to find RFC 822 email addresses in plain text.

Email::Find is a module for finding a subset of RFC 822 email addresses in arbitrary text (see "CAVEATS"). The addresses it finds are not guaranteed to exist or even actually be email addresses at all (see "CAVEATS"), but they will be valid RFC 822 syntax.

Email::Find will perform some heuristics to avoid some of the more obvious red herrings and false addresses, but theres only so much which can be done without a human.

Finds email addresses in the text and executes callback registered.

The callback is given two arguments. The first is a Mail::Address object representing the address found. The second is the actual original email as found in the text. Whatever the callback returns will replace the original text.

<<less
Download (0.039MB)
Added: 2007-03-31 License: Perl Artistic License Price:
943 downloads
HTML::Parser 3.54

HTML::Parser 3.54


HTML::Parser is a HTML parser class. more>>
HTML::Parser is a HTML parser class. Objects of the HTML::Parser class will recognize markup and separate it from plain text (alias data content) in HTML documents. As different kinds of markup and text are recognized, the corresponding event handlers are invoked.
HTML::Parser is not a generic SGML parser.

We have tried to make it able to deal with the HTML that is actually "out there", and it normally parses as closely as possible to the way the popular web browsers do it instead of strictly following one of the many HTML specifications from W3C. Where there is disagreement, there is often an option that you can enable to get the official behaviour.

The document to be parsed may be supplied in arbitrary chunks. This makes on-the-fly parsing as documents are received from the network possible.
If event driven parsing does not feel right for your application, you might want to use HTML::PullParser. This is an HTML::Parser subclass that allows a more conventional program structure.

SYNOPSIS:

use HTML::Parser ();

# Create parser object
$p = HTML::Parser->new( api_version => 3,
start_h => [&start, "tagname, attr"],
end_h => [&end, "tagname"],
marked_sections => 1,
);

# Parse document text chunk by chunk
$p->parse($chunk1);
$p->parse($chunk2);
#...
$p->eof; # signal end of document

# Parse directly from file
$p->parse_file("foo.html");
# or
open(my $fh, "<<less
Download (0.082MB)
Added: 2006-05-05 License: Perl Artistic License Price:
1269 downloads
Mail::Message::Convert::TextAutoformat 2.066

Mail::Message::Convert::TextAutoformat 2.066


Mail::Message::Convert::TextAutoformat is a Perl module that can reformat plain text messages. more>>
Mail::Message::Convert::TextAutoformat is a Perl module that can reformat plain text messages.

INHERITANCE

Mail::Message::Convert::TextAutoformat
is a Mail::Message::Convert
is a Mail::Reporter

SYNOPSIS

use Mail::Message::Convert::TextAutoformat;
my $af = Mail::Message::Convert::TextAutoformat->new;

my $beautified_body = $af->autoformatBody($body);

Play trics with plain text, for instance bodies with type text/plain using Damian Conways Text::Autoformat.

<<less
Download (0.57MB)
Added: 2006-08-21 License: Perl Artistic License Price:
1159 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5