how to write a newsletter
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 5200
PloneNewsLetter 2.0
PloneNewsLetter provides a product for sending newsletters based on new Plone content to an email address in TXT or HTML format. more>>
PloneNewsLetter provides a product for sending newsletters based on new Plone content to an email address in TXT or HTML format.
PloneNewsLetter gives you the possibility to create your custom newsletters. The newsletter is prepared for being sent using your favourite mass mailer, and can be directly published on your site.
The process of creating your PloneNewsLetter:
- You create a new PloneNewsLetter
- Using PloneNewsLetter, you search your Plone site for content
- You select the documents that you want to make it into the newsletter
- You can click on the "create" button, and an html and text version of the newsletter are created.
- The html and text versions can now be edited and viewed quickly in a preview window.
- Once you are satisfied with the result, you can send the newsletter to your email address.
- You can use your favourite mass mailer to distribute the newsletter Features:
- The templates used for production of the newsletter are fully customizable.
- The selection of objects for the newsletter is remembered, so you dont have to reselect everything just because you changed the templates.
- If the user publishes the newsletters content, all users will see the HTML version of the newsletter. That way the the newsletter is automatically archived online.
- PloneNewsLetter consists of two object:
- A content type, for users
- A Portal Tool, for settings
<<lessPloneNewsLetter gives you the possibility to create your custom newsletters. The newsletter is prepared for being sent using your favourite mass mailer, and can be directly published on your site.
The process of creating your PloneNewsLetter:
- You create a new PloneNewsLetter
- Using PloneNewsLetter, you search your Plone site for content
- You select the documents that you want to make it into the newsletter
- You can click on the "create" button, and an html and text version of the newsletter are created.
- The html and text versions can now be edited and viewed quickly in a preview window.
- Once you are satisfied with the result, you can send the newsletter to your email address.
- You can use your favourite mass mailer to distribute the newsletter Features:
- The templates used for production of the newsletter are fully customizable.
- The selection of objects for the newsletter is remembered, so you dont have to reselect everything just because you changed the templates.
- If the user publishes the newsletters content, all users will see the HTML version of the newsletter. That way the the newsletter is automatically archived online.
- PloneNewsLetter consists of two object:
- A content type, for users
- A Portal Tool, for settings
Download (0.11MB)
Added: 2007-02-12 License: GPL (GNU General Public License) Price:
985 downloads
Oxylus Newsletters System 0.2
Oxylus Newsletters System is a complex newsletter system. It allows you to manage multiple groups. more>>
Oxylus Newsletters System is a complex newsletter system. It allows you to manage multiple groups.
You can import and export users, and public subscription is allowed. Oxylus Newsletters System project allows linux users to schedule newsletters for a specific date using a crontab job.
For each sent newsletter, you can see its history and whether it was successfully sent.
Enhancements:
- This version is fully compatible with PHP5.
- The mails are sent just once to all the users.
- The SQL error which occurred when new groups are created was fixed.
- Various framework bugfixes were made.
<<lessYou can import and export users, and public subscription is allowed. Oxylus Newsletters System project allows linux users to schedule newsletters for a specific date using a crontab job.
For each sent newsletter, you can see its history and whether it was successfully sent.
Enhancements:
- This version is fully compatible with PHP5.
- The mails are sent just once to all the users.
- The SQL error which occurred when new groups are created was fixed.
- Various framework bugfixes were made.
Download (0.20MB)
Added: 2005-11-25 License: GPL (GNU General Public License) Price:
1435 downloads
C2::Newsletter 0.3 beta
C2::Newsletter is a tool to send MIME-encoded newsletters. more>>
C2::Newsletter is a simple tool for sending newsletters to your visitors. It allows you to create multiple newsletters, so your visitors can select which topics they want to receive.
There is an admin interface to add/edit newsletters and recipients, and send in plain text or MIME-encoded. It is easy to use, but currently only in German (English will be available soon).
Enhancements:
new Features
- Verification email is now configurable (plain text only)
- Supports now the admin as recipient for verification emails
fixed Bugs:
- Admin interface allows to list the recipients of a specified newsletter
- Config page => cancel button now works
- deleting a newsletter deletes also items in c2_mail_newsletter_selections
- holds email when adding a new recipient record
- verification of new recipients now works
performance:
- function GetConfig()
<<lessThere is an admin interface to add/edit newsletters and recipients, and send in plain text or MIME-encoded. It is easy to use, but currently only in German (English will be available soon).
Enhancements:
new Features
- Verification email is now configurable (plain text only)
- Supports now the admin as recipient for verification emails
fixed Bugs:
- Admin interface allows to list the recipients of a specified newsletter
- Config page => cancel button now works
- deleting a newsletter deletes also items in c2_mail_newsletter_selections
- holds email when adding a new recipient record
- verification of new recipients now works
performance:
- function GetConfig()
Download (0.024MB)
Added: 2005-04-26 License: GPL (GNU General Public License) Price:
1642 downloads
MySQL PHP to Posgres Converter 0.94
MySQL PHP to PostgreSQL is a program that takes a php page that uses mysql calls and changes them into PostgreSQL calls. more>>
MySQL PHP to PostgreSQL is an application that takes a php page that uses mysql calls and changes them into PostgreSQL calls.
This allows any website (if it converts properly) that was written in PHP for MySQL to run as a website written to run on PostgreSQL.
- Step 1: Download and uncompress
To uncompress simply type: tar xvzf mysqlphp2postgres.tar.gz
If youre on a non-GNU system you might have to type: gzip -dc mysqlphp2postgres.tar.gz | tar xvf -
- Step 2: Compile
To compile simply type: make
If youre on a non-GNU system youll have to edit the make file to change the compiler to cc instead of gcc
- Step 3: Install
Type: make install
This will simply copy the binary file to /usr/local/bin/
- Step 4: Convert
Type: mysqlphp2postgres inputfile.php outputfile.php
The input file is the php page that uses mysql. The outfile is the page you want to create. You will probably need to tell mysqlphp2postgres the name of the postgreSQL database since mysql_select_db doesnt translate. You can do this by using a -d switch. So if, for example, the database youre connecting to is called blah, you could type: mysqlphp2postgres -d blah inputfile.php outputfile.php
Problems:
I have had the following problems from using this program:
MySQL has a lot more functions in PHP than PostgreSQL that do more things. I havent had a problem with any unsupported functions in my programs, but someone probably will. If you want to help write code for this to support those functions (if thats even possible) feel free to help.
Enhancements:
- Fixed some stuff.
- Cleaned up some code.
- This program now produces code optomized for PHP 4.1.0 and above.
<<lessThis allows any website (if it converts properly) that was written in PHP for MySQL to run as a website written to run on PostgreSQL.
- Step 1: Download and uncompress
To uncompress simply type: tar xvzf mysqlphp2postgres.tar.gz
If youre on a non-GNU system you might have to type: gzip -dc mysqlphp2postgres.tar.gz | tar xvf -
- Step 2: Compile
To compile simply type: make
If youre on a non-GNU system youll have to edit the make file to change the compiler to cc instead of gcc
- Step 3: Install
Type: make install
This will simply copy the binary file to /usr/local/bin/
- Step 4: Convert
Type: mysqlphp2postgres inputfile.php outputfile.php
The input file is the php page that uses mysql. The outfile is the page you want to create. You will probably need to tell mysqlphp2postgres the name of the postgreSQL database since mysql_select_db doesnt translate. You can do this by using a -d switch. So if, for example, the database youre connecting to is called blah, you could type: mysqlphp2postgres -d blah inputfile.php outputfile.php
Problems:
I have had the following problems from using this program:
MySQL has a lot more functions in PHP than PostgreSQL that do more things. I havent had a problem with any unsupported functions in my programs, but someone probably will. If you want to help write code for this to support those functions (if thats even possible) feel free to help.
Enhancements:
- Fixed some stuff.
- Cleaned up some code.
- This program now produces code optomized for PHP 4.1.0 and above.
Download (0.011MB)
Added: 2006-04-14 License: GPL (GNU General Public License) Price:
1288 downloads
Apache AntUnit 1.0
AntUnit is a library of Ant tasks that was initially developed to write tests for Ant tasks without resorting to JUnit. more>>
AntUnit is a library of Ant tasks that was initially developed to write tests for Ant tasks without resorting to JUnit. Apache AntUnit makes it easy to turn an existing build file that exhibits an error into an AntUnit test.
Tests are written as targets in a build file using assertion tasks provided by AntUnit. The antunit task executes targets in a collection of build files and supports custom listeners in a manner similar to the junit tasks formatters.
<<lessTests are written as targets in a build file using assertion tasks provided by AntUnit. The antunit task executes targets in a collection of build files and supports custom listeners in a manner similar to the junit tasks formatters.
Download (MB)
Added: 2007-01-08 License: The Apache License 2.0 Price:
1020 downloads
Spreadsheet::WriteExcelXML 0.10
Spreadsheet::WriteExcelXML is a Perl module that can create an Excel file in XML format. more>>
Spreadsheet::WriteExcelXML is a Perl module that can create an Excel file in XML format.
SYNOPSIS
To write a string, a formatted string, a number and a formula to the first worksheet in an Excel XML spreadsheet called perl.xls:
use Spreadsheet::WriteExcelXML;
# Create a new Excel workbook
my $workbook = Spreadsheet::WriteExcelXML->new("perl.xls");
# Add a worksheet
$worksheet = $workbook->add_worksheet();
# Add and define a format
$format = $workbook->add_format(); # Add a format
$format->set_bold();
$format->set_color(red);
$format->set_align(center);
# Write a formatted and unformatted string, row and column notation.
$col = $row = 0;
$worksheet->write($row, $col, "Hi Excel!", $format);
$worksheet->write(1, $col, "Hi Excel!");
# Write a number and a formula using A1 notation
$worksheet->write(A3, 1.2345);
$worksheet->write(A4, =SIN(PI()/4));
The Spreadsheet::WriteExcelXML module can be used to create an Excel file in XML format. The Excel XML format is supported in Excel 2002 and 2003.
Multiple worksheets can be added to a workbook and formatting can be applied to cells. Text, numbers, and formulas can be written to the cells. The module supports strings up to 32,767 characters and the strings can be in UTF8 format.
Spreadsheet::WriteExcelXML uses the same interface as Spreadsheet::WriteExcel.
This module cannot, as yet, be used to write to an existing Excel XML file.
<<lessSYNOPSIS
To write a string, a formatted string, a number and a formula to the first worksheet in an Excel XML spreadsheet called perl.xls:
use Spreadsheet::WriteExcelXML;
# Create a new Excel workbook
my $workbook = Spreadsheet::WriteExcelXML->new("perl.xls");
# Add a worksheet
$worksheet = $workbook->add_worksheet();
# Add and define a format
$format = $workbook->add_format(); # Add a format
$format->set_bold();
$format->set_color(red);
$format->set_align(center);
# Write a formatted and unformatted string, row and column notation.
$col = $row = 0;
$worksheet->write($row, $col, "Hi Excel!", $format);
$worksheet->write(1, $col, "Hi Excel!");
# Write a number and a formula using A1 notation
$worksheet->write(A3, 1.2345);
$worksheet->write(A4, =SIN(PI()/4));
The Spreadsheet::WriteExcelXML module can be used to create an Excel file in XML format. The Excel XML format is supported in Excel 2002 and 2003.
Multiple worksheets can be added to a workbook and formatting can be applied to cells. Text, numbers, and formulas can be written to the cells. The module supports strings up to 32,767 characters and the strings can be in UTF8 format.
Spreadsheet::WriteExcelXML uses the same interface as Spreadsheet::WriteExcel.
This module cannot, as yet, be used to write to an existing Excel XML file.
Download (0.14MB)
Added: 2006-12-04 License: Perl Artistic License Price:
1054 downloads
cowdancer 0.13
cowdancer allows copy-on-write file access. more>>
cowdancer allows copy-on-write file access. You can copy a full tree using hard links, and cowdancer will create a new copy when you need to write to a file.
cowdancer is completely implemented in userland, and should run on most Linux filesystems.
Enhancements:
- This release supports spaces in filenames.
<<lesscowdancer is completely implemented in userland, and should run on most Linux filesystems.
Enhancements:
- This release supports spaces in filenames.
Download (0.026MB)
Added: 2006-03-05 License: GPL (GNU General Public License) Price:
1328 downloads
MooDriver 0.20
MooDriver is a library providing a C++ museekd more>>
MooDriver is a library providing a C++ museekd "driver" class (Moo::Driver) MooDriver makes it easy to write museekd clients without having to deal with the museekd daemon and its protocol directly. museekd is a daemon which acts as a gateway to the SoulSeek P2P network.
<<less Download (0.38MB)
Added: 2006-11-12 License: GPL (GNU General Public License) Price:
1076 downloads
LibMSWrite 0.9
LibMSWrite is a free, platform-independent C++ filter library that can read and write the Microsoft Write 3.0/3.1 document. more>>
LibMSWrite is a free, platform-independent C++ filter library that can read and write the Microsoft Write 3.0/3.1 document format. LibMSWrite library supports what is believed to be the complete featureset of the Write file format.
It is fully portable across 32-bit and 64-bit architectures and has no dependencies other than C++. Both Linux, Windows and any other system that supports C++ is supported (STL is not required).
It employs XML-based code generation techniques to simplify the process of manipulating binary Write data structures, in a portable manner.
What can LibMSWrite do for me?
LibMSWrite provides a comprehensive API that serves as a significant abstraction layer for the Microsoft Write file format. Its primary use is in the "backend" of Write Import and Export filters for office suites. LibMSWrite simplifies the creation of such filters because developers no longer need to know the innards of the Write file format.
LibMSWrite forms the basis of the Write filters for KWord >= 1. (http://www.koffice.org), the word processor that complements the K Desktop Environment (http://www.kde.org), which is the most popular free GUI for Unix-based systems (e.g. Linux, FreeBSD).
The LibMSWrite Project does not just provide a library. It also includes:
- mswrite2html: program which converts Write files to XHTML
- list.h: alternative linked list implementation to STL
- xmlparser.cpp: quick & dirty XML parser
- wmf.cpp: WMF parser and BMP-to-WMF converter
Microsoft Write ?
Microsoft Write was the word processor included in Microsoft Windows 3.x (now more than a decade old). With the notable exception of tables, it supported all of the features needed for writing simple documents (essays, book reviews, reports etc.). The Microsoft Write format is almost completely unrelated to the, now (2003) de-facto, Microsoft Word format.
Microsoft Write files usually have the extension .WRI. Although, there are some .WRI files that are actually RTFs.
LibMSWrite was written because there was a need to guarantee that Write documents could continue to be read in the face of diminishing compatibility for old, binary document file formats. For instance, this is important if you have 7 years worth of work in the format...
The LibMSWrite project is not endorsed by Microsoft.
<<lessIt is fully portable across 32-bit and 64-bit architectures and has no dependencies other than C++. Both Linux, Windows and any other system that supports C++ is supported (STL is not required).
It employs XML-based code generation techniques to simplify the process of manipulating binary Write data structures, in a portable manner.
What can LibMSWrite do for me?
LibMSWrite provides a comprehensive API that serves as a significant abstraction layer for the Microsoft Write file format. Its primary use is in the "backend" of Write Import and Export filters for office suites. LibMSWrite simplifies the creation of such filters because developers no longer need to know the innards of the Write file format.
LibMSWrite forms the basis of the Write filters for KWord >= 1. (http://www.koffice.org), the word processor that complements the K Desktop Environment (http://www.kde.org), which is the most popular free GUI for Unix-based systems (e.g. Linux, FreeBSD).
The LibMSWrite Project does not just provide a library. It also includes:
- mswrite2html: program which converts Write files to XHTML
- list.h: alternative linked list implementation to STL
- xmlparser.cpp: quick & dirty XML parser
- wmf.cpp: WMF parser and BMP-to-WMF converter
Microsoft Write ?
Microsoft Write was the word processor included in Microsoft Windows 3.x (now more than a decade old). With the notable exception of tables, it supported all of the features needed for writing simple documents (essays, book reviews, reports etc.). The Microsoft Write format is almost completely unrelated to the, now (2003) de-facto, Microsoft Word format.
Microsoft Write files usually have the extension .WRI. Although, there are some .WRI files that are actually RTFs.
LibMSWrite was written because there was a need to guarantee that Write documents could continue to be read in the face of diminishing compatibility for old, binary document file formats. For instance, this is important if you have 7 years worth of work in the format...
The LibMSWrite project is not endorsed by Microsoft.
Download (0.074MB)
Added: 2006-03-30 License: BSD License Price:
1303 downloads
RubyFilter 0.12
RubyFilter provides a Ruby email filtering program and library. more>>
RubyFilter provides a Ruby email filtering program and library.
RubyFilter is a Ruby email filtering program that can serve as a replacement for email delivery programs such as procmail.
It is also a Ruby module which provides classes that make it easy to write programs that filter and deliver email.
<<lessRubyFilter is a Ruby email filtering program that can serve as a replacement for email delivery programs such as procmail.
It is also a Ruby module which provides classes that make it easy to write programs that filter and deliver email.
Download (0.059MB)
Added: 2007-04-17 License: BSD License Price:
921 downloads
IRC to MSN gateway 0.1
This is the IRC gateway for Microsoft(tm) Messenger. more>>
This is the IRC gateway for Microsoft(tm) Messenger.
You probably wonder what this is and why I wrote this. Some more information can be found in the DESIGN document that is included in this package.
This software is written by Johannes Verelst and is licensed through the GPL license (http://www.gnu.org/licenses/gpl.html).
Note that this is pre-alpha code, it probably does a bit that you want, but dont email me bugreports or feature requests. It is under heavy development.
If this program doesnt run try to install corectly all required perl modules yourself.
The idea for this program came when I was getting annoyed by the fact that I had to use different programs for both IRC and MSN. Since I dont know of any good MSN clients that can do IRC too (on unix, ofcourse), I started thinking about the other way around: an IRC client that can do MSN.
When I saw a piece of software written by Adam Swann that allows easy connectivity to MSN with perl, I decided to write an IRC server in perl that would connect to MSN for you. This is the result.
<<lessYou probably wonder what this is and why I wrote this. Some more information can be found in the DESIGN document that is included in this package.
This software is written by Johannes Verelst and is licensed through the GPL license (http://www.gnu.org/licenses/gpl.html).
Note that this is pre-alpha code, it probably does a bit that you want, but dont email me bugreports or feature requests. It is under heavy development.
If this program doesnt run try to install corectly all required perl modules yourself.
The idea for this program came when I was getting annoyed by the fact that I had to use different programs for both IRC and MSN. Since I dont know of any good MSN clients that can do IRC too (on unix, ofcourse), I started thinking about the other way around: an IRC client that can do MSN.
When I saw a piece of software written by Adam Swann that allows easy connectivity to MSN with perl, I decided to write an IRC server in perl that would connect to MSN for you. This is the result.
Download (0.009MB)
Added: 2006-06-16 License: GPL (GNU General Public License) Price:
1229 downloads
INews 0.8
INews is a system to write and publish newspapers on the internet. more>>
INews is a system to write and publish newspapers on the internet.
INews is different, because:
* the newspaper has a traditional structure, with pages and articles distributed like in a paper newspaper.
* the newspaper is not published using HTML, but can be read with a java application.
INews is a complete system, composed by:
* a server application.
* an editor application, to write and publish editions of the newspaper.
* a reader application, to read the last edition of the newspaper on the internet.
* an administration application.
Purposes of the system are:
* speed and simplicity to write and publish the newspaper:
if the articles are ready as RTF documents (written with the most common word processors) and the pictures are ready, it should be a matter of minutes to publish the newspaper.
* to work in team to publish the newspaper.
* to keep an archive with all the articles, images and editions of the newspaper.
* to be open: all the articles and images are saved in the filesystem in a directory tree.
It is possible to build new parts types (like articles and images) and add them to the system.
<<lessINews is different, because:
* the newspaper has a traditional structure, with pages and articles distributed like in a paper newspaper.
* the newspaper is not published using HTML, but can be read with a java application.
INews is a complete system, composed by:
* a server application.
* an editor application, to write and publish editions of the newspaper.
* a reader application, to read the last edition of the newspaper on the internet.
* an administration application.
Purposes of the system are:
* speed and simplicity to write and publish the newspaper:
if the articles are ready as RTF documents (written with the most common word processors) and the pictures are ready, it should be a matter of minutes to publish the newspaper.
* to work in team to publish the newspaper.
* to keep an archive with all the articles, images and editions of the newspaper.
* to be open: all the articles and images are saved in the filesystem in a directory tree.
It is possible to build new parts types (like articles and images) and add them to the system.
Download (0.92MB)
Added: 2005-09-23 License: Freeware Price:
1495 downloads
pyXLWriter 0.4a3
pyXLWriter is a Python library for generating Excel spreadsheets. more>>
pyXLWriter is a Python library for generating Excel spreadsheets. Its a port of John McNamaras Spreadsheet::WriteExcel Perl module.
To install run python setup.py install in the root of the distribution.
Enhancements:
- Simple Worksheet.write correction (thanks to Frank Tobin)
- Corrected authors e-mail: fufff@users.sourceforge.net
<<lessTo install run python setup.py install in the root of the distribution.
Enhancements:
- Simple Worksheet.write correction (thanks to Frank Tobin)
- Corrected authors e-mail: fufff@users.sourceforge.net
Download (0.15MB)
Added: 2006-07-18 License: GPL (GNU General Public License) Price:
1200 downloads
libGarbageCollector 1.1
libGarbageCollector is an incremental garbage collector with a tri-color, Baker treadmill, write-barrier implementation. more>>
libGarbageCollector is an incremental garbage collector with a tri-color, Baker treadmill, write-barrier implementation.
libGarbageCollector is built from the garbage collector code used in the Io programming language project.
<<lesslibGarbageCollector is built from the garbage collector code used in the Io programming language project.
Download (0.034MB)
Added: 2006-05-22 License: BSD License Price:
1252 downloads
RegExplorer 0.1.6
RegExplorer project is a regular Expression Explorer. more>>
RegExplorer project is a regular Expression Explorer.
It allows for writing regular expressions and visually see the matches, thus making regular expression much easier to write and maintain.
<<lessIt allows for writing regular expressions and visually see the matches, thus making regular expression much easier to write and maintain.
Download (0.028MB)
Added: 2006-11-03 License: QPL (QT Public License) Price:
1086 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above how to write a newsletter search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed