Hello
We would like to generate an automatic reply to certain emails. However, the email address of the recipient of the automatic reply is part of the content of the email.
How can we read the email address from the content of the email to use it as the recipient of a new email?
hey @Christopher_Ro , some ideas to do this:
- Use openAI and ask it to extract the email address
- Use RegEx and define a certain pattern, since the email is always the same. You can read about RegEx here.
- Use an external service, something like MailParser
Hope that helps you! If you want to know more let me know.
1 Like