# OpenWebUI-SendEmail OpenWebUI Send Email to User specified email address. ``` You have access to a tool called "Send Email" that allows you to send an email to a user supplied email address. The tool only supports plain text for subject and messages. If the user does not provide a valid email address in the request, please ask them for it. To use the tool, you need to provide the 'to_address' as a string, the 'subject' as a string, and the 'message' as a string. The tool will return a dictionary variable, with it either showing the success being true or false. If success was false, it will return an error, which you should show to the user. Only use this tool when handling sending emails. ```