# Send an Email **POST /mail/send** Sends an email to the given recipient. Returns a success message if successful, otherwise returns an error. Permissions Required: Manager Role (Dev, Admin, or Owner) ## Servers - Production Server: https://thefemdevs.com/api (Production Server) ## Parameters #### Headers - **x-user** (string) The Account Credentials used to send the email - **x-from** (string) The information of the sender to be included in the message (sender's name, sender's email address, etc) Syntax: `n:NAME;a:ADDRESS;r:REPLYTOADDRESS` ## Body parameters Content-type: application/json The email information to send - **to** (string) The email address to send the email to - **subject** (string) The subject of the email ## Responses ### 200: Ok Response #### Body Parameters: text/plain (string) string ### 400: Missing Body Parameter(s) #### Body Parameters: application/json (object) - **code** (integer) The error code - **message** (string) The error message ### 401: Invalid/Missing API Token #### Body Parameters: application/json (object) - **code** (integer) The error code - **message** (string) The error message ### 403: Missing Permissions #### Body Parameters: application/json (object) - **code** (integer) The error code - **message** (string) The error message ### 500: Error sending email #### Body Parameters: application/json (object) - **code** (integer) The error code - **message** (string) The error message [Powered by Bump.sh](https://bump.sh)