- Project tools
-
-
- How do I...
-
| Category |
Featured projects |
| scm |
Subversion,
Subclipse,
TortoiseSVN,
RapidSVN
|
| issuetrack |
Scarab |
| requirements |
xmlbasedsrs |
| design |
ArgoUML |
| techcomm |
SubEtha,
eyebrowse,
midgard,
cowiki |
| construction |
antelope,
scons,
frameworx,
build-interceptor,
propel,
phing
|
| testing |
maxq,
aut
|
| deployment |
current |
| process |
ReadySET |
| libraries |
GEF,
Axion,
Style,
SSTree
|
| Over 500 more tools... |
|
Welcome to the new Tigris! There have been some changes to the administration of mail lists. Project and list owners should check out the Discussion Services release notes.
Class BaseEmailView
View --+
|
BaseEmailView
- Known Subclasses:
-
ApacheStyleEmailView,
EtherealStyleEmailView,
HtmlEmailView,
InlineAttachmentEmailView,
TigrisStyleEmailView
A basic email implementation for other style-specific email views to
extend
Core properties:
-
server (required) - the mail server to relay through
-
subject (required) - the subject line (e.g. "commit:
$model.greatestCommonDirectory()")
-
from (required) - the from email address (e.g.
"$model.user@yourdomain.com")
-
to (required) - a comma-separated list of email addresses to send
to
-
cc (optional) - a comma-separated list of email addresses to cc
to
-
header (optional) - text to put at the beginning of the email
-
footer (optional) - text to put at the end of the email
-
username - a SMTP auth username
-
password - a SMTP auth password
-
contenttype - the Content-Type header to use (defaults to:
text/plain; charset="iso-8859-1")
| Method Summary |
| |
__init__(self,
name,
model)
Initializes the the SMTP username to None, header to '', and footer to
'' |
| |
__getitem__(self,
name)
Used to get the 'from' attribute (as it is a keyword) |
| |
execute(self)
Sends the email with commit information |
| |
generateSubject(self,
text)
|
| Inherited from View |
| |
dumpToTestFile(self,
text)
Writes out text to a file called SubClassName.txt |
| |
isTesting(self)
Return whether acceptance testing is being performed |
| |
testFilePath(self)
Return the path of the test dump file |
__getitem__(self,
name)
(Indexing operator)
Used to get the 'from' attribute (as it is a keyword)
-
|
|