We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44b9c2b commit 5b574adCopy full SHA for 5b574ad
send-quarto-emails/methods.py
@@ -110,7 +110,10 @@ def _read_quarto_email_json(path: str) -> IntermediateDataStruct:
110
111
# Other metadata fields, as per https://github.com/posit-dev/connect/wiki/Rendering#output-metadata-fields-and-validation
112
# These might be rmd specific, not quarto
113
- # metadata.get("rsc_output_files", [])
+
114
+ # This is a list of paths that connect dumps attached files into.
115
+ # Should be in same output directory
116
+ output_files = metadata.get("rsc_output_files", [])
117
# metadata.get("rsc_email_attachments", [])
118
119
# Get email images (dictionary: {filename: base64_string})
0 commit comments