Jump to content

Mac Send Mail


This topic is 8180 days old. Please don't post here. Open a new topic instead.

Recommended Posts

FMP 5 and later includes support for Outlook. Alternatively look at using the Open URL[] script step. It is more limited but interfaces with whatever program is set up to handle mailto.

Link to comment
Share on other sites

If you want you can 'Perform AppleScript" (MacOnly)

tell application "Outlook Express"

activate

set msg to "JohnDoe <[email protected]>"

set sbj to "Dear John!"

set cnt to "This is the body copy"

set theMsg to make new draft window with properties {to recipients:msg, subject:sbj, content:cnt}

send theMsg with sending later

end tell

This script was created by: Richard Dyce <[email protected]>

Link to comment
Share on other sites

This topic is 8180 days old. Please don't post here. Open a new topic instead.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.