-3

Does anyone know how to send an automatic email in filemaker pro 14? Or can I use any language like python in filemaker to create a trigger to automatically send an email? For example if I have completed a record on my system or meet the deadline it will automatically send an email

Karl Guevarra
  • 349
  • 2
  • 12

1 Answers1

1

can I use any language like python in filemaker

No, FileMaker has its own "language".

For example if I have completed a record on my system...

To have something happen automatically as a result of user performing some action, look at script triggers.

... or meet the deadline it will automatically send an email

"Meet the deadline" is not an event that FileMaker will react to. And you would not want to have it that way, because then nothing would happen if the deadline were met while the file was closed.

I would suggest you do this as part of your opening script: find the records that have passed their deadline, process them and make a note of either the records processed or the timestamp, so that you don't process them again next time.

michael.hor257k
  • 113,275
  • 6
  • 33
  • 51