INPUT_OBJECT

SendEmail

link GraphQL Schema definition

1input SendEmail {
5
2# For security considerations this value is now ignored. The from address will be
3# set by the server"
4from: String!
7
6to: String!
9
8cc: String
11
10bcc: String
13
12subject: String!
16
14# Message can be either text or HTML
15message: String!
18
17replyTo: String!
19}