Templates
上传用户:huihesys
上传日期:2007-01-04
资源大小:3877k
文件大小:1k
源码类别:

WEB邮件程序

开发平台:

C/C++

  1. WebMail templates
  2. =================
  3. WebMail pages are assembled using templates in normal HTML with special tags that are 
  4. enclosed in "<<" and ">>". The tag name is looked up in the current session's 
  5. environment table and the tag replaced with the value found there.
  6. WebMail uses the gnu.regexp package for this.
  7. There is currently no list of all available tags, but those are the most common:
  8. <<SESSION>> The current session ID. Mainly used in URLs
  9. <<VERSION>>             Version of WebMail
  10. <<DATE>>                Current date in locale specific format
  11. <<OS>>                  Name of the operating system
  12. <<LOGIN>>               Login name of the user
  13. <<EMAIL>>               EMail address of the user
  14. <<SIGNATURE>>           Signature of the user
  15. <<FULL NAME>>           Full name of the user
  16. <<FOLDERS WELCOME>> A list of folders for the welcome screen (include number of
  17.                         messages, status, ...)
  18. <<FOLDERS CONFIG>>      List of folders for the folder setup dialog
  19. <<FOLDERS>>          Standard <SELECT> style list of folders
  20. See the method setEnv() in WebMailSession for more tags.