Jump to content

how can I - copy Mail.app email into a field


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

Recommended Posts

Hello,

I've never used applescript. I want to be aple to copy an email, in Mail into a field in a database, where I could then parse it [once I figure that out] In fact, even some script to simply select all the email data and copy to the clipboard would be great, then I could just paste it

Any wizards here who could please tell me how to do this?

Thanks

Edited by Guest
Link to comment
Share on other sites

I want to be aple to copy an email

The present one in the window or just every mail in the inbox?? Here is a suggestion to a stand alone script which later can be embedded. That graps the text of latest arrived email:

tell application "Mail"

	last message of inbox

	set aVar to content of result

end tell

tell application "FileMaker Pro Advanced"

	set cell 1 to aVar

end tell

--sd

Link to comment
Share on other sites

This topic is 6427 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.