we are sending transactional email with attachment via message center.
Currently we dont have connection to sftp the file to the adobe server before the sent, we try to upload the file to the google cloud storage and generate the signed url, then pass to the rtevent. However this is not working. (error message: Unreachable Inbound email bounce (rule 'Probably_unreachable' has matched this bounce))
We have tried using a public link such as https://host/file.pdf, and it works perfectly fine. however if we tried pass the url as https://host/file.pdf?test=test, the attachment name received in the email is "file.pdftest=test". below is our current attachment configuration.
The signed url will have long query parameters with the authentication headers, which i think why it cause the email to bounce.
so the question is, is there a way to customize the attachment name?
Sample url is something like this:
https://storage.googleapis.com/bucketname/sample.pdf?x-goog-signature=signature&x-goog-algorithm=GOO...
