Rich S Posted October 9, 2024 Posted October 9, 2024 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
Ocean West Posted October 9, 2024 Posted October 9, 2024 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
Rich S Posted October 10, 2024 Author Posted October 10, 2024 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
comment Posted October 10, 2024 Posted October 10, 2024 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.
Rich S Posted October 10, 2024 Author Posted October 10, 2024 Beauty! Thanks, that works. ...and sorry about the pictures vs. code.
comment Posted October 10, 2024 Posted October 10, 2024 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).
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now