Skip to main content

电子邮件

电子邮件是用于保存电子邮件地址的输入。

💡 常用电子邮件 Usage

电子邮件输入类型可被用来存储任何合法的电子邮件地址。

应用程序接口定义

{
"myEmailInput": {
"title": "My email input",
"icon": "My icon",
"description": "My email input",
"type": "string",
"format": "email",
"default": "[email protected]"
}
}

Check out Port's API reference to learn more.

Terraform 定义

resource "port_action" "myAction" {
# ...action properties
user_properties = {
string_props = {
"myEmailInput" = {
title = "My email input"
description = "My email input"
format = "email"
default = "[email protected]"
}
}
}
}