-
Notifications
You must be signed in to change notification settings - Fork 480
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Attachments option in SMTP binding. It will allow send mail attachments #1062
Comments
This issue has been automatically marked as stale because it has not had activity in the last 30 days. It will be closed in the next 7 days unless it is tagged (pinned, good first issue, help wanted or triaged/resolved) or other activity occurs. Thank you for your contributions. |
This issue has been automatically closed because it has not had activity in the last 37 days. If this issue is still valid, please ping a maintainer and ask them to label it as pinned, good first issue, help wanted or triaged/resolved. Thank you for your contributions. |
Reopened this. |
Came across a need for this recently. Is there any guidance on how this should look for the API? |
As an output binding, the attachment can use the |
/assign |
It appears that the I wonder if it makes sense to do the following instead:
|
This makes sense. No need to add a "See attachment" to the body in the case of attachment. |
@rovangju Could you please share the specifics on the need for attachments? It'll help me have a better idea how folks are thinking about using this feature. |
Nothing special; simple things like generated results from a job (pdf, csv, etc). |
The topic of multipart is a great point! Let's look into that. |
@robertojrojas But for users who want more convenience and do not know how to craft multipart encodings.. I think we should support some sort of option like this (JSON): {
"body": "sometext",
"attachments": [
{
"content-type": "bla",
"filename": "stuff",
"data": "b64 encoded file contents"
},
// more attachments here
]
} |
Hello, |
We also need to send attachments via mail. Cause this feature is missing we have to implement smtp in the app itself which is what dapr is trying to avoid. In our case we need to send reports as attachments. Still no solution for that I assume? |
Would like to see this feature as well. |
Describe the feature
Add Attachments option in SMTP binding. It will allow send mail attachments
RELEASE NOTE:
The text was updated successfully, but these errors were encountered: