I'm a complete Zope novice. Forgive me if my question is inane. <br><br>I need to be able to send an e-mail (following a form submit) with an attachment (and I prefer not to use DTML). I can send e-mails withOUT attachments, but according to this: 
<a href="http://mail.zope.org/pipermail/zope/2005-May/159291.html">http://mail.zope.org/pipermail/zope/2005-May/159291.html</a><br><br>I need to create <br><br><br>&quot;a simple product like this:<br><br>EmailTools/__init__.py
<br>------------------- contents ---------------------------------<br>from AccessControl import allow_module, allow_class, allow_type<br>from AccessControl import ModuleSecurityInfo, ClassSecurityInfo<br><br>from email.MIMEText
 import MIMEText<br>from email.MIMEMultipart import MIMEMultipart<br>from email.MIMEBase import MIMEBase<br>from email.Header import Header<br>from MailCrypt import signmail<br>from email.Encoders import encode_base64<br>
<br>allow_class(BlockFormatter)<br>allow_class(MIMEBase)<br>allow_class(MIMEText)<br>allow_class(MIMEMultipart)<br>allow_class(Header)<br>allow_class(signmail)<br>allow_class(encode_base64)<br>---------------------------------------------------------------
<br>&quot;<br><br><br><br>This then will allow me to send attachments using <br><br>from Products.EmailTools import<br>MIMEText,MIMEBase,MIMEMultipart,Header,encode_base64<br><br>in the python script. (Without the EmailTools product Zope tells me I am not allowed to import MIME*)
<br><br><br>This is where my question comes in. I have tried to create the product both from the ZMI (which does not allow the creation of __init__.py's) and via command line (in ~/Products, in lib/Python, everywhere that the sparse and conflicting information I have been able to gather tells me). Doing the latter I can certainly create the __init__.py but the Product doesn't register with zope. 
<br><br><br>Could someone give a quick walk-through (or point to an up-to-date source) on how to create this Product? <br><br>(I am running&nbsp; Zope 2.8.6-final, python 2.4.3, linux2)<br><br>Thanks.