@@ -0,0 +1,17 @@
|
||||
export interface OutgoingEmailLogItem {
|
||||
id: number;
|
||||
message_id: string;
|
||||
status: 'sent' | 'not-sent' | 'error';
|
||||
from: string;
|
||||
to: string;
|
||||
subject: string;
|
||||
parsed_message?: {
|
||||
headers: Record<string, string>;
|
||||
body: {
|
||||
html: string;
|
||||
text: string;
|
||||
};
|
||||
};
|
||||
created_at: string;
|
||||
updated_at: string;
|
||||
}
|
||||
Reference in New Issue
Block a user