Configure SMTP For outbound emails
Details on how to customize the "from" email address used on outbound form emails
Our platform by default uses an email address no-reply@cloudemail.net to send emails when forms are filled out. This no-reply email address shows as the "from" account when these emails are viewed in an email client.
This "from" email can be customized to use your own domain by providing us an email address to send these emails from. This will require email server credentials similar to what would be used to configure the account in Outlook or other email clients.
Here are some example credentials for a Google Gmail account.
EMAIL_FROM = 'Email Name <no-reply@example.com>'
EMAIL_HOST = 'smtp.gmail.com'
EMAIL_HOST_PASSWORD = 'XXXXXXXXXXXX'
EMAIL_HOST_USER = 'no-reply@example.com'
EMAIL_USE_TLS = True
EMAIL_PORT = 587Last updated
Was this helpful?