Expand my Community achievements bar.

Announcing the launch of new sub-community for Campaign Web UI to cater specifically to the needs of Campaign Web UI users!
SOLVED

How to use dynamic attachment name

Avatar

Level 2

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...

image.png

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

Hi @chiDing,

 

You can also have a dynamic name to your attachment based on a value of a field from the request. e.g. <%= rtEvent.ctx.fileNameToShowInEmail %>

You need to go to the advanced tab of the "Attachment definition" window, and do the following. This way you can have a different name for every request.

isahore_0-1603881233421.png

Regards,

Ishan

 

View solution in original post

4 Replies

Avatar

Level 2

found a solution myself:

 

added a Content-Disposition header with filename solve the problem.

Content-Disposition: attachment; filename="filename.pdf"

Avatar

Correct answer by
Community Advisor

Hi @chiDing,

 

You can also have a dynamic name to your attachment based on a value of a field from the request. e.g. <%= rtEvent.ctx.fileNameToShowInEmail %>

You need to go to the advanced tab of the "Attachment definition" window, and do the following. This way you can have a different name for every request.

isahore_0-1603881233421.png

Regards,

Ishan

 

Avatar

Level 2
somehow for our instance, sometimes the setting change for attachment is not published to the message center server.