email.yaml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. identity:
  2. author: wakaka6
  3. name: email
  4. label:
  5. en_US: email
  6. zh_Hans: 电子邮件
  7. description:
  8. en_US: send email through smtp protocol
  9. zh_Hans: 通过smtp协议发送电子邮件
  10. icon: icon.svg
  11. tags:
  12. - utilities
  13. credentials_for_provider:
  14. email_account:
  15. type: text-input
  16. required: true
  17. label:
  18. en_US: email account
  19. zh_Hans: 邮件账号
  20. placeholder:
  21. en_US: input you email account
  22. zh_Hans: 输入你的邮箱账号
  23. help:
  24. en_US: email account
  25. zh_Hans: 邮件账号
  26. email_password:
  27. type: secret-input
  28. required: true
  29. label:
  30. en_US: email password
  31. zh_Hans: 邮件密码
  32. placeholder:
  33. en_US: email password
  34. zh_Hans: 邮件密码
  35. help:
  36. en_US: email password
  37. zh_Hans: 邮件密码
  38. smtp_server:
  39. type: text-input
  40. required: true
  41. label:
  42. en_US: smtp server
  43. zh_Hans: 发信smtp服务器地址
  44. placeholder:
  45. en_US: smtp server
  46. zh_Hans: 发信smtp服务器地址
  47. help:
  48. en_US: smtp server
  49. zh_Hans: 发信smtp服务器地址
  50. smtp_port:
  51. type: text-input
  52. required: true
  53. label:
  54. en_US: smtp server port
  55. zh_Hans: 发信smtp服务器端口
  56. placeholder:
  57. en_US: smtp server port
  58. zh_Hans: 发信smtp服务器端口
  59. help:
  60. en_US: smtp server port
  61. zh_Hans: 发信smtp服务器端口
  62. encrypt_method:
  63. type: select
  64. required: true
  65. options:
  66. - value: NONE
  67. label:
  68. en_US: NONE
  69. zh_Hans: 无加密
  70. - value: SSL
  71. label:
  72. en_US: SSL
  73. zh_Hans: SSL加密
  74. - value: TLS
  75. label:
  76. en_US: START TLS
  77. zh_Hans: START TLS加密
  78. label:
  79. en_US: encrypt method
  80. zh_Hans: 加密方式
  81. help:
  82. en_US: smtp server encrypt method
  83. zh_Hans: 发信smtp服务器加密方式