Changeset 2784 for trunk/thirdparty/cl-smtp/README
- Timestamp:
- 03/23/08 15:19:51 (10 months ago)
- Files:
-
- trunk/thirdparty/cl-smtp/README (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/thirdparty/cl-smtp/README
r2782 r2784 26 26 - host (String) : hostname or ip-adress of the smtpserver 27 27 - from (String) : email adress 28 - to (String or Consof Strings) : email adress28 - to (String or List of Strings) : email adress 29 29 - subject (String) : subject text 30 30 - message (String) : message body 31 31 keywords: 32 - cc (String or Consof Strings) : email adress carbon copy33 - bcc (String or Consof Strings): email adress blind carbon copy32 - cc (String or List of Strings) : email adress carbon copy 33 - bcc (String or List of Strings): email adress blind carbon copy 34 34 - reply-to (String) : email adress 35 35 - displayname (String) : displayname of the sender 36 - extra-headers ( Cons) : extra headers as alist36 - extra-headers (List) : extra headers as alist 37 37 - html-message (String) : message body formatted with HTML tags 38 - authentication ( Cons) : list with 3elements39 ( :method"username" "password")38 - authentication (List) : list with 2 or elements 39 ([:method] "username" "password") 40 40 method is a keyword :plain or :login 41 If the method is not specified, the 42 proper method is determined automatically. 41 43 - attachments (String or Pathname: attachments to send 42 Consof String/Pathnames)44 List of String/Pathnames) 43 45 - buffer-size (Number default 256): controls how much of a attachment file 44 46 is read on each loop before encoding 45 47 and transmitting the contents, 46 48 the number is interpretted in KB 47 - ssl (Boolean) : if true than use the STARTTLS functionality to make a ssl connection 49 - ssl (Boolean) : if true than use the STARTTLS functionality 50 to make a ssl connection 48 51 49 52 Returns nil or error with message
