Skip to main content

Email

Email is an input used to save Email addresses.

💡 Common email usage​

The Email input type can be used to store any legal email address.

API definition​

{
"myEmailInput": {
"title": "My email input",
"icon": "My icon",
"description": "My email input",
"type": "string",
"format": "email",
"default": "me@example.com"
}
}

Check out Port's API reference to learn more.

Terraform definition​

resource "port_action" "myAction" {
# ...action properties
user_properties = {
string_props = {
"myEmailInput" = {
title = "My email input"
description = "My email input"
format = "email"
default = "me@example.com"
}
}
}
}