File size: 3,324 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 |
export type EmailProvider = 'titan' | 'google-workspace' | 'forwarding';
export interface Email {
id: string;
emailAddress: string;
type: 'mailbox' | 'forwarding';
provider: EmailProvider;
providerDisplayName: string;
domainName: string;
siteId?: string;
siteName?: string;
forwardingTo?: string;
storageUsed?: number;
storageLimit?: number;
createdDate: string;
status: 'active' | 'pending' | 'suspended';
}
export const EMAIL_DATA: Email[] = [
{
id: '1',
emailAddress: 'info@example.com',
type: 'mailbox',
provider: 'titan',
providerDisplayName: 'Titan Mail',
domainName: 'example.com',
siteId: '2',
siteName: 'Business Site',
storageUsed: 235,
storageLimit: 10240,
createdDate: '2022-06-15',
status: 'active',
},
{
id: '2',
emailAddress: 'support@example.com',
type: 'mailbox',
provider: 'titan',
providerDisplayName: 'Titan Mail',
domainName: 'example.com',
siteId: '2',
siteName: 'Business Site',
storageUsed: 1560,
storageLimit: 10240,
createdDate: '2022-06-15',
status: 'active',
},
{
id: '3',
emailAddress: 'billing@mybusiness.store',
type: 'mailbox',
provider: 'google-workspace',
providerDisplayName: 'Google Workspace',
domainName: 'mybusiness.store',
siteId: '2',
siteName: 'Business Site',
storageUsed: 3200,
storageLimit: 30720,
createdDate: '2023-01-25',
status: 'active',
},
{
id: '4',
emailAddress: 'contact@creative-portfolio.design',
type: 'forwarding',
provider: 'forwarding',
providerDisplayName: 'Email Forwarding',
domainName: 'creative-portfolio.design',
siteId: '3',
siteName: 'Portfolio',
forwardingTo: 'myname@gmail.com',
createdDate: '2022-11-15',
status: 'active',
},
{
id: '5',
emailAddress: 'jobs@mybusiness.store',
type: 'forwarding',
provider: 'forwarding',
providerDisplayName: 'Email Forwarding',
domainName: 'mybusiness.store',
siteId: '2',
siteName: 'Business Site',
forwardingTo: 'career@mybusiness.com',
createdDate: '2023-02-10',
status: 'active',
},
{
id: '6',
emailAddress: 'newsletter@myblog.com',
type: 'forwarding',
provider: 'forwarding',
providerDisplayName: 'Email Forwarding',
domainName: 'myblog.com',
siteId: '1',
siteName: 'My Blog',
forwardingTo: 'myblog-newsletter@gmail.com',
createdDate: '2022-08-05',
status: 'active',
},
{
id: '7',
emailAddress: 'admin@mybusiness.store',
type: 'mailbox',
provider: 'google-workspace',
providerDisplayName: 'Google Workspace',
domainName: 'mybusiness.store',
siteId: '2',
siteName: 'Business Site',
storageUsed: 5685,
storageLimit: 30720,
createdDate: '2023-01-25',
status: 'active',
},
{
id: '8',
emailAddress: 'team@example.com',
type: 'mailbox',
provider: 'titan',
providerDisplayName: 'Titan Mail',
domainName: 'example.com',
siteId: '2',
siteName: 'Business Site',
storageUsed: 4250,
storageLimit: 10240,
createdDate: '2022-06-18',
status: 'active',
},
];
export async function fetchEmails(): Promise< Email[] > {
return Promise.resolve( EMAIL_DATA );
}
export function findEmailById( id: string ): Email | undefined {
return EMAIL_DATA.find( ( email ) => email.id === id );
}
export async function fetchEmail( id: string ): Promise< Email | undefined > {
return Promise.resolve( findEmailById( id ) );
}
|