Show
Ignore:
Timestamp:
03/23/08 15:19:51 (10 months ago)
Author:
hans
Message:

More CL-SMTP refactoring. Add new API WITH-SMTP-MAIL that can be used to send
preformatted messages (with headers)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/thirdparty/cl-smtp/README

    r2782 r2784  
    2626  - host (String)                  : hostname or ip-adress of the smtpserver 
    2727  - from (String)                  : email adress  
    28   - to (String or Cons of Strings) : email adress  
     28  - to (String or List of Strings) : email adress  
    2929  - subject (String)               : subject text 
    3030  - message (String)               : message body 
    3131  keywords: 
    32   - cc (String or Cons of Strings) : email adress carbon copy 
    33   - bcc (String or Cons of Strings): email adress blind carbon copy 
     32  - cc (String or List of Strings) : email adress carbon copy 
     33  - bcc (String or List of Strings): email adress blind carbon copy 
    3434  - reply-to (String)              : email adress 
    3535  - displayname (String)           : displayname of the sender 
    36   - extra-headers (Cons)           : extra headers as alist 
     36  - extra-headers (List)           : extra headers as alist 
    3737  - html-message (String)          : message body formatted with HTML tags 
    38   - authentication (Cons)          : list with 3 elements 
    39                                      (:method "username" "password") 
     38  - authentication (List)          : list with 2 or elements 
     39                                     ([:method] "username" "password") 
    4040                                     method is a keyword :plain or :login 
     41                                     If the method is not specified, the 
     42                                     proper method is determined automatically. 
    4143  - attachments (String or Pathname: attachments to send 
    42                 Cons of String/Pathnames) 
     44                List of String/Pathnames) 
    4345  - buffer-size (Number default 256): controls how much of a attachment file 
    4446                                      is read on each loop before encoding  
    4547                                      and transmitting the contents,  
    4648                                      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 
    4851 
    4952Returns nil or error with message