Is that really invisible? If they are in Apple Mail, don’t they see the mail 
being created and sent? Also, it will be in their sent mail. Not my idea of 
invisible. Further, this will only work if an email account with working SMTP 
has been already created, and if the SMTP server ever becomes unavailable and 
your app attempts to send something, it will pop an error. 

Bob


On Mar 28, 2014, at 19:33 , Richard Miller <w...@together.net> wrote:

> This solution looks promising. Used the following as an applescript. Worked 
> perfectly. Just requires that each Mac have a working version of Mail 
> installed.
> 
> ---------------------
> 
> set recipientName to "Richard"
> set recipientAddress to "rdmil...@together.net"
> set theSubject to "Type your subject here!"
> set theContent to "Type your message content here!"
> 
> tell application "Mail"
> 
>        ##Create the message
>        set theMessage to make new outgoing message with properties 
> {subject:theSubject, content:theContent, visible:true}
> 
>        ##Set a recipient
>        tell theMessage
>                make new to recipient with properties {name:recipientName, 
> address:recipientAddress}
> 
>                ##Send the Message
>                send
> 
>        end tell
> end tell
> 
> _______________________________________________
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode


_______________________________________________
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Reply via email to