You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wiki/server/graph/schemas/mail.graphql

48 lines
922 B

# ===============================================
# MAIL
# ===============================================
extend type Query {
mailConfig: MailConfig
}
extend type Mutation {
sendMailTest(
recipientEmail: String!
): DefaultResponse
updateMailConfig(
senderName: String!
senderEmail: String!
host: String!
port: Int!
secure: Boolean!
verifySSL: Boolean!
user: String!
pass: String!
useDKIM: Boolean!
dkimDomainName: String!
dkimKeySelector: String!
dkimPrivateKey: String!
): DefaultResponse
}
# -----------------------------------------------
# TYPES
# -----------------------------------------------
type MailConfig {
senderName: String
senderEmail: String
host: String
port: Int
secure: Boolean
verifySSL: Boolean
user: String
pass: String
useDKIM: Boolean
dkimDomainName: String
dkimKeySelector: String
dkimPrivateKey: String
}