Currently, an uploaded file can be attached to an action, but its filename cannot be output in the e-mail. By extending the conditions in DataTemplateImplementation->stringify, this could be easily achieved:
} elseif ($value instanceof CachedUploadedFile) {
return $value->getClientFilename();
Is this just a missing feature or was it a concious decision?
Currently, an uploaded file can be attached to an action, but its filename cannot be output in the e-mail. By extending the conditions in
DataTemplateImplementation->stringify, this could be easily achieved:Is this just a missing feature or was it a concious decision?