Do I need to creat a seperate email notification for everyworkspace I want published?
NOTE: I do not want to use python.
Do I need to creat a seperate email notification for everyworkspace I want published?
NOTE: I do not want to use python.
Looking at the template keywords (http://docs.safe.com/fme/2015/html/FME_Server_Documentation/Default.htm#ServerCore/Email_Templates.htm), I doesn't seem possible to include the workspace name. I think your best bet is to either use the FMEServerEmailGenerator (https://store.safe.com/transformers/fmeserveremailgenerator) or the PythonEmailer (https://store.safe.com/transformers/pythonemailer) (don't worry, you don't have to write a single line of code). Both are available on the FME Store.
David
This is now possible in FME Server 2016.0 The JSON that is passed contains the repository, workspace name and log URL. Like this:
{ ... "repository": "Samples", "workspace": "austinApartments.fmw", "logUrl": "http://localhost:8080/fmerest/v3/transformations/jobs/id/1/log" }
This is now possible in FME Server 2016.0 The JSON that is passed contains the repository, workspace name and log URL. Like this:
{ ... "repository": "Samples", "workspace": "austinApartments.fmw", "logUrl": "http://localhost:8080/fmerest/v3/transformations/jobs/id/1/log" }
This is now possible in FME Server 2016.0 The JSON that is passed contains the repository, workspace name and log URL. Like this:
{ ... "repository": "Samples", "workspace": "austinApartments.fmw", "logUrl": "http://localhost:8080/fmerest/v3/transformations/jobs/id/1/log" }