This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
from OFS.CopySupport import CopyError | |
from Products.Archetypes.Field import ReferenceField | |
from Products.Archetypes.Field import TextField | |
from Products.Archetypes.exceptions import ReferenceException | |
from Products.CMFCore.WorkflowCore import WorkflowException | |
from Products.statusmessages.interfaces import IStatusMessage | |
from plone import api | |
from z3c.form import field, button | |
from z3c.form.form import Form |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# for information how to use a zope page template to rende the html see | |
# https://github.com/collective/collective.dancing/blob/1.0.1/collective/dancing/composer.py#L342 | |
from Products.CMFPlone.utils import safe_unicode | |
from email.Header import Header | |
from email.MIMEMultipart import MIMEMultipart | |
from email.MIMEText import MIMEText | |
from email.Utils import formatdate | |
import email | |
import html2text |