Le 9 janv. 2010 à 08:03, Yves COPPE a écrit :

> 
> Hello list
> 
> on mac OS X(leopard)
> I'd like do send an applescript from rev to mail.app
> it should be something like this :
> open mail.app
> open a new message
> fill the fields "To", "Object" and "Message" with variables
> 
> Can anyone help me in this task ?
> 
> thank you
> 

Hello Yves

here a script found on the net :

tell application "Mail" 
        set newMessage to (make new outgoing message at end of outgoing 
messages with properties {subject:"@@", content:"##"}) 
        tell newMessage 
                make new recipient at end of to recipients with properties 
{address:"§§"} 
                make new cc recipient at beginning of cc recipients with 
properties {address:"••"} 
                send newMessage 
                delay 45 
                quit 
        end tell 
end tell

Place it on a field

With Rev, change @@ with the subject, ## with the message, §§ with the email 
and •• with an other email if you 
want._______________________________________________
use-revolution mailing list
[email protected]
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to