Jump to content
Claris Engage 2025 - March 25-26 Austin Texas ×

Email and PDF Function


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

Recommended Posts

Posted

Let me ask if there is any way to do this. I have a script where we (prior to upgrading to 9...we had 7), had to print to PDF then manually attach to an email we generated from filemaker.

Now I would like to, all in one script, create the PDF in filemaker and a formatted email with filemaker data.

The problem is the PDF function has an email feature but it doesn't give you any options like the send mail script function.

I need to have data populated in the email and attach the PDF...but, alas, I'm lost. Thank you i advance

Posted

You can use a combo of the 2 steps. First specify the file path in a script Variable step. In FileMaker 9 you can use the new Get ( TemporaryPath ), if you don't want to see the PDFs. They will then be deleted when you restart the machine (on a Mac anyway, and I imagine the same for Windows, hence "temporary"). Otherwise put them in a folder on the Desktop, using Get ( DesktopPath ).

Set Variable [ $filepath; "filewin:" & Get ( TemporaryPath ) & "some file.pdf" ]

# You would likely get "some file.pdf" from a FileMaker field, not hard coded text (so it wouldn't have quotes)

Save Records as PDF [ $filepath ]

Send Mail [ ... ... ; attachment; $filepath ]

Posted

Not with native FileMaker. It can be done via AppleScript. In fact, you can create a folder, put both in it, then zip the folder, then attach that. But that's a bit more complex.

  • 2 weeks later...
Posted

Thanks Fenton, that worked! I also stumbled on the fact that the Business Productivity Suite (BPS) that FIlemaker created has this in their script for the 'email invoice' button

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