- Create Newsletter Page: MailingList (without the class style, using Gulp tasks)#94

- Add test Email button
This commit is contained in:
Paolo Arena
2019-11-21 00:19:42 +01:00
parent e089f23c0b
commit 895df43074
9 changed files with 165 additions and 14 deletions

View File

@@ -38,6 +38,28 @@ export interface ITeachUname {
username?: string
}
export interface INewsToSent {
_id: string
idapp?: string
label?: string
numemail_tot?: number
numemail_sent?: number
datetoSent?: Date
datestartJob?: Date
datefinishJob?: Date
lastemailsent_Job?: Date
starting_job?: boolean
finish_job?: boolean
error_job?: string
}
export interface IMailinglist {
name?: string
surname?: string
email: string
lastid_newstosent?: string
}
export interface IDiscipline {
typol_code?: string
order?: number
@@ -96,6 +118,8 @@ export interface IGlobalState {
lastaction: IAction
settings: ISettings[],
disciplines: IDiscipline[],
newstosent: INewsToSent[],
mailinglist: IMailinglist[],
autoplaydisc: number
}