October 9, 20241 yr I'm close, but I don't know where I'm muffing it; the user receives the e-mail, but no .pdf file attachment. Here's the script text: WHen the script runs, I get the attached error message. What do I need to tweak? (Running FMS v20.x on a Windows network.) Cheers, Rich
October 9, 20241 yr in your $_Path don't put "file: " I usually do this after Save as PDF: SetVariable $url = "file://" & If ( Get ( SystemPlatform ) = 1 ; "/Volumes" ) & $_Path Insert from URL Dialog Off Target $attachment ; $url : cURL options: "--FM-return_container-varable" The use that $attachment variable in the email
October 10, 20241 yr Author Thank you, but the user is still receiving an e-mail without an attachment. I _think_ it's because the $_Attachment variable hasn't been defined, yet, after making your recommended changes. (See attached.) What changes should I make? Thanks tons, Rich
October 10, 20241 yr What happens if you do simply: Set Variable [ $path ; Get ( TemporaryPath ) & "ESU 7 Monthly Product Code Summary Report.pdf" ] Save Records as PDF [... ; "$path" ; ... ] Send Mail [ ... ; "$path" ; ... ] --- P.S. Please post your scripts as code, not as pictures.
October 10, 20241 yr Just now, Rich S said: that works. Good. Just a small note about the "file:" prefix: you don't have to use it in the present case. But if you do, it needs to be without the trailing space you have in your original script (which I believe would have worked otherwise).
Create an account or sign in to comment