This package aims to provide language dependent character set for sending emails form Plone site.
Project description
Introduction
Character set of outgoing mail of Plone is defined in a portal property name “email_charset” and this charset set is globally used in the Plone site. This is fine with monolingual site, however in multilingual site, there are cases you want to send mails with differernt character sets for different languages. This package provide this function simply by overriding secureSend method from SecureMailHost class, some scripts and templates.
There are five main default cases for sending e-mails from Plone site:
When new user registers to the site with password setting disabled.
When a user forgets password and plone sends the user the guide to reset it.
When user contacts administrator form contact form.
When sending content to somebody from “Send this” link.
When content rules trigers sending mail, ex) when adding content to a certain folder.
All these five cases are supported by this package, however tests are only done with character set of iso-2022-jp for Japanese language and utf-8 for other languages.
Setting language and character set
Once you installed this package from quickinstaller, go to ZMI of the plone site. Within portal_properties, there is mailhost_properties where you can set two propeties.
- lang_charset
‘ja|iso-2022-jp’ is default value. This means for Japanese language (‘ja’), use character set ‘iso-2022-jp’. To add other language and character set pair, add it line by line. Remenber to follow this syntax: language|charset
- is_member_lang_effective
If this option is selected, logged in member receives e-mail with the character set of member’s choice of languages.
Script example for your own code
If you already use secureSend method, you don’t need to do anything.
If you are using “send” method from HailHost class, you may need to apply charset properly. Here is an example how to use ILangCharset interface:
>>> from collective.langMailHost.interfaces import ILangCharset >>> charset = ILangCharset(portal).effective_charset() or portal.getProperty('email_charset', 'UTF-8') ...
Changelog
0.2.0 - (2009-09-01)
Overrode secureSend method from SecureMailHost class.
0.1.0 - (2009-08-31)
Initial release
Tested with Plone-3.3
Installation
To install collective.langMailHost into the global Python environment (or a workingenv), using a traditional Zope 2 instance, you can do this:
When you’re reading this you have probably already run easy_install collective.langMailHost. Find out how to install setuptools (and EasyInstall) here: http://peak.telecommunity.com/DevCenter/EasyInstall
Create a file called collective.langMailHost-configure.zcml in the /path/to/instance/etc/package-includes directory. The file should only contain this:
<include package="collective.langMailHost" />
Alternatively, if you are using zc.buildout and the plone.recipe.zope2instance recipe to manage your project, you can do this:
Add collective.langMailHost to the list of eggs to install, e.g.:
[buildout]…eggs =…collective.langMailHostTell the plone.recipe.zope2instance recipe to install a ZCML slug:
[instance]recipe = plone.recipe.zope2instance…zcml =collective.langMailHost # 1collective.langMailHost-overrides # 2Re-run buildout, e.g. with:
$ ./bin/buildout
You can skip the ZCML slug # 1 if you are going to explicitly include the package from another package’s configure.zcml file, but not # 2.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file collective.langMailHost-0.2.0.tar.gz
.
File metadata
- Download URL: collective.langMailHost-0.2.0.tar.gz
- Upload date:
- Size: 16.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7b071f74529dccdf07e72fa87f403a5570ec8683d4ba70393f5604f075913d89 |
|
MD5 | 6377532aedaa77be31b449dd533cc0e1 |
|
BLAKE2b-256 | c85527bab0ee17401d17404a9101881d9645a1c0d430a114175e326757dffffc |