June 17, 200916 yr Have a script that sends emails automatically but i now have to send the contents of a container field how would I go about attaching it automatically in a script? Cheers Robert
June 17, 200916 yr You could export the container field contents to local location and then attach the file at that location. I would suggest using a variable to do so. i.e. Set Variable [ $path; Value:Get ( DesktopPath ) & "example.pdf" ] Export Field Contents [ Table::Field; “$path” ] Send Mail [ Send via E-mail Client; To: [email protected]; Subject: "Subject"; Attachment: “$path” ][ No dialog ]
Create an account or sign in to comment