mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-01-08 01:04:39 +08:00
22 lines
414 B
Text
22 lines
414 B
Text
|
const Fields = {
|
||
|
To: "textFieldTo",
|
||
|
Cc: "textFieldCc",
|
||
|
Bcc: "textFieldBcc",
|
||
|
From: "fromField",
|
||
|
Subject: "textFieldSubject",
|
||
|
Body: "contentBody",
|
||
|
};
|
||
|
|
||
|
Fields.ParticipantFields = [Fields.To, Fields.Cc, Fields.Bcc];
|
||
|
|
||
|
Fields.Order = {
|
||
|
"textFieldTo": 1,
|
||
|
"textFieldCc": 2,
|
||
|
"textFieldBcc": 3,
|
||
|
"fromField": -1, // Not selectable
|
||
|
"textFieldSubject": 5,
|
||
|
"contentBody": 6,
|
||
|
};
|
||
|
|
||
|
module.exports = Fields;
|