• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Download link for Mail.osax
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Download link for Mail.osax


  • Subject: Download link for Mail.osax
  • From: Emmanuel LEVY <email@hidden>
  • Date: Thu, 14 Nov 2013 10:31:08 +0100

Since there are quite many people interested finally, here is a download link for Mail.osax.

That's : http://satimage.fr/software/downloads/Mail120.osax.zip

Here is the dictionary, as a html file, and as raw text.

Best!
Emmanuel
Satimage

Title: Mail dictionary
Mail suite
Records
bodydescriptor
Commands
send email
htmlbody
Mail utilities
Commands
encode header
encode quotedprintable
mime boundary
encodebase64
mimetype info
build mutipart mixed body
Mail suite
A Satimage addition to send an email from Applescript.

bodydescriptor n : a record defining the body or a part of a multipart body.

properties

mimetype string : the mime-type.

contents string : the body. If mimetype is missing, the body is considered the raw body containing the headers and the encoded data


send email v : send an email

send email

to string : the recipients of the mail

from string : the author of the mail

subject string : the subject of the mail

body string, bodydescriptor, or list : the body of the mail. If body is a list, a multipart/alternative body is created. A string is equivalent to a bodydescriptor with a "text/plain" mime-type.

[SMTP server string] : the smtp server to send the mail (smtp.foobar.com),default is 'localhost'

[cc list of string] : the list of cc recipients of the mail {cc1,cc2,...}

[bcc list of string] : the list of bcc recipients of the mail {bcc1,bcc2,...}

[pseudoto string] : the virtual to recipient of the mail (useful for bcc-only email)

[attachments list of file] : the list of attachments for the mail {file1,file2,...}

[priority integer] : 1=highest, 2=hight, 3=normal(default), 4=low, 5=lowest

[extra headers list of list] : {{header 1,value 1},...,{header n,value n}}

[reply to string] : Where to send a reply to this message

[errors to string] : Where to send all the error messages

[port integer] : the port on which runs the SMTP server (25 is the default)

[timeout integer] : abort after how many seconds ? (default is 60 seconds)

[using datestamp date] : you might wish to have control over the sent date (either a string or an applescript date).

[ssl boolean] : whether you want to use SSL encryption

[ssl verification verify none | verify peer] : what kind of SSL verification to do with your certificates

[pem certificate file file] : where is your PEM certificate, should be left blank if using 'verify none'

[pem certificate directory file] : where is your directory containing PEM certificate, should be left blank if using 'verify none'

[authentication plain | login | pop3 | crammd5 | cramsha1 | anonymous | auto] : the type of authentication mechanism to use

[username string] : your login if the server requires an authentication

[password string] : your password if the server requires an authentication. If no password is given, XMail will try to search in the keychain for something suitable.

[sending boolean] : whether you want the mail to be sent or not (default is true)

[output boolean] : whether you want the mail to be returned by 'send mail' (default is the opposite of the sending parameter)

[saving in file] : whether you want to save the mail sent.

[output encoding string] : a IANA encoding name ("UTF-8", "ISO-8859-1", "US-ASCII",…). The encoding to be used to compose the mail (default is "UTF-8")

htmlbody v : return a raw body

htmlbody alias

[output encoding string] : a IANA encoding name . The encoding to be used to compose the result (default is "UTF-8")

[base string] : the url for the header base element

[include resources boolean] : include the resources referenced by relative urls (default: false)

→ string

Mail utilities
Some utilities to build raw bodies.

encode header v : escape the non ASCII characters according to the RFC 2231 and 2047

encode header string

[output encoding string] : a IANA encoding name. The encoding to be used to compose the result (default is "UTF-8")

→ string

encode quotedprintable v : escape the non ASCII characters of a text body part according to the RFC 2045

encode quotedprintable string

[output encoding string] : a IANA encoding name. The encoding to be used to compose the result (default is "UTF-8")

→ string

mime boundary v : return a boundary for a mime message

mime boundary

→ string

encodebase64 v

encodebase64 alias

→ string

mimetype info v

mimetype info alias

→ string

build mutipart mixed body v

build mutipart mixed body list of bodydescriptor : list of string (encoded as text/plain) or raw body ({contents:...}) or alias (image file)

[output encoding string] : a IANA encoding name ("UTF-8", "ISO-8859-15", "US-ASCII",…). The encoding to be used to compose the mail (default is "UTF-8")

→ bodydescriptor


Mail suite
A Satimage addition to send an email from Applescript.
bodydescriptor n : a record defining the body or a part of a multipart body.
properties
mimetype string : the mime-type.
contents string : the body. If mimetype is missing, the body is considered the raw body containing the headers and the encoded data
send email v : send an email
send email
to string : the recipients of the mail
from string : the author of the mail
subject string : the subject of the mail
body string, bodydescriptor, or list : the body of the mail. If body is a list, a multipart/alternative body is created. A string is equivalent to a bodydescriptor with a "text/plain" mime-type.
[SMTP server string] : the smtp server to send the mail (smtp.foobar.com),default is 'localhost'
[cc list of string] : the list of cc recipients of the mail {cc1,cc2,...}
[bcc list of string] : the list of bcc recipients of the mail {bcc1,bcc2,...}
[pseudoto string] : the virtual to recipient of the mail (useful for bcc-only email)
[attachments list of file] : the list of attachments for the mail {file1,file2,...}
[priority integer] : 1=highest, 2=hight, 3=normal(default), 4=low, 5=lowest
[extra headers list of list] : {{header 1,value 1},...,{header n,value n}}
[reply to string] : Where to send a reply to this message
[errors to string] : Where to send all the error messages
[port integer] : the port on which runs the SMTP server (25 is the default)
[timeout integer] : abort after how many seconds ? (default is 60 seconds)
[using datestamp date] : you might wish to have control over the sent date (either a string or an applescript date).
[ssl boolean] : whether you want to use SSL encryption
[ssl verification verify none | verify peer] : what kind of SSL verification to do with your certificates
[pem certificate file file] : where is your PEM certificate, should be left blank if using 'verify none'
[pem certificate directory file] : where is your directory containing PEM certificate, should be left blank if using 'verify none'
[authentication plain | login | pop3 | crammd5 | cramsha1 | anonymous | auto] : the type of authentication mechanism to use
[username string] : your login if the server requires an authentication
[password string] : your password if the server requires an authentication. If no password is given, XMail will try to search in the keychain for something suitable.
[sending boolean] : whether you want the mail to be sent or not (default is true)
[output boolean] : whether you want the mail to be returned by 'send mail' (default is the opposite of the sending parameter)
[saving in file] : whether you want to save the mail sent.
[output encoding string] : a IANA encoding name ("UTF-8", "ISO-8859-1", "US-ASCII",…). The encoding to be used to compose the mail (default is "UTF-8")
htmlbody v : return a raw body
htmlbody alias
[output encoding string] : a IANA encoding name . The encoding to be used to compose the result (default is "UTF-8")
[base string] : the url for the header base element
[include resources boolean] : include the resources referenced by relative urls (default: false)
→ string
Mail utilities
Some utilities to build raw bodies.
encode header v : escape the non ASCII characters according to the RFC 2231 and 2047
encode header string
[output encoding string] : a IANA encoding name. The encoding to be used to compose the result (default is "UTF-8")
→ string
encode quotedprintable v : escape the non ASCII characters of a text body part according to the RFC 2045
encode quotedprintable string
[output encoding string] : a IANA encoding name. The encoding to be used to compose the result (default is "UTF-8")
→ string
mime boundary v : return a boundary for a mime message
mime boundary
→ string
encodebase64 v
encodebase64 alias
→ string
mimetype info v
mimetype info alias
→ string
build mutipart mixed body v
build mutipart mixed body list of bodydescriptor : list of string (encoded as text/plain) or raw body ({contents:...}) or alias (image file)
[output encoding string] : a IANA encoding name ("UTF-8", "ISO-8859-15", "US-ASCII",…). The encoding to be used to compose the mail (default is "UTF-8")
→ bodydescriptor
 _______________________________________________
Do not post admin requests to the list. They will be ignored.
AppleScript-Users mailing list      (email@hidden)
Help/Unsubscribe/Update your Subscription:
Archives: http://lists.apple.com/archives/applescript-users

This email sent to email@hidden

  • Follow-Ups:
    • Re: Download links for Mail.osax & Files.osax
      • From: Christopher Stone <email@hidden>
References: 
 >Email address to subscribe to Smile Users List (SUL) (From: Emmanuel LEVY <email@hidden>)
 >Re: Email address to subscribe to Smile Users List (SUL) (From: Bruce Robertson <email@hidden>)
 >Re: Email address to subscribe to Smile Users List (SUL) (From: Axel Luttgens <email@hidden>)

  • Prev by Date: Re: Email address to subscribe to Smile Users List (SUL)
  • Next by Date: Re: Download links for Mail.osax & Files.osax
  • Previous by thread: Re: Email address to subscribe to Smile Users List (SUL)
  • Next by thread: Re: Download links for Mail.osax & Files.osax
  • Index(es):
    • Date
    • Thread