Write sent email data to database

Hello again :wave:

How can I save the sent email (including loaded data sets) in a database?

Many thanks for your help.

Can you supply a bit more information what you are trying to do?

I’m building a project management platform on which we want to bundle communication with customers and service providers.

When I send an email, the message should be saved in the Messages area.

Just add an insert record step after the email step and use the same text as you are using for your email message :slight_smile:

Just be careful. Storing lots of messages, especially if you’re storing the whole thing including formatting/html, can become very large - use at least a separate table in your database for the message content so it doesn’t slow down queries when listing basic message data.

2 Likes