Submission form that link to an email address instead of the Database Collection

After creating a submission form, is it possible to link it to an email address instead of the Database Collection?

For example, I want to create a Product Return Form. When customer want to return the merchandise to us, he/she needs to submit the receipt image with a description why he/she wants to return the item(s). After customer upload the receipt image and click submit, is it possible to link it to an appointed email address instead of linking it to a database collection?

Hey
By linking do you mean to just send all in an email instead of storing it inside the data collection? What I would do here is to keep on storing them in the data collection. Then goto Hooks in that Data Collection and add a hook onAfterSave and inside that code you get the item object which will consist of all entered values.

In this function take the sendGrid sample code from Wix and send the email with all the details to you or the person that wants the email sent to them.

That might be workable for me. I will try that. Thank you!