swad-core/swad_mail.h

99 lines
3.6 KiB
C
Raw Normal View History

2016-11-16 23:19:52 +01:00
// swad_mail.h: all the stuff related to email
2014-12-01 23:55:08 +01:00
#ifndef _SWAD_MAI
#define _SWAD_MAI
/*
SWAD (Shared Workspace At a Distance in Spanish),
is a web platform developed at the University of Granada (Spain),
and used to support university teaching.
This file is part of SWAD core.
2019-01-07 21:52:19 +01:00
Copyright (C) 1999-2019 Antonio Ca<EFBFBD>as Vargas
2014-12-01 23:55:08 +01:00
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/*****************************************************************************/
/********************************* Headers ***********************************/
/*****************************************************************************/
2017-01-17 03:10:43 +01:00
#include "swad_user.h"
2014-12-01 23:55:08 +01:00
/*****************************************************************************/
/************************** Public types and constants ***********************/
/*****************************************************************************/
2017-03-08 14:12:33 +01:00
#define Mai_MAX_CHARS_MAIL_INFO (128 - 1) // 127
#define Mai_MAX_BYTES_MAIL_INFO ((Mai_MAX_CHARS_MAIL_INFO + 1) * Str_MAX_BYTES_PER_CHAR - 1) // 2047
2014-12-01 23:55:08 +01:00
2017-01-29 21:41:08 +01:00
#define Mai_NUM_ORDERS 3
2014-12-01 23:55:08 +01:00
typedef enum
{
Mai_ORDER_BY_DOMAIN = 0,
Mai_ORDER_BY_INFO = 1,
Mai_ORDER_BY_USERS = 2,
2017-01-29 12:42:19 +01:00
} Mai_DomainsOrder_t;
#define Mai_ORDER_DEFAULT Mai_ORDER_BY_USERS
2014-12-01 23:55:08 +01:00
struct Mail
{
long MaiCod;
2017-03-13 13:17:53 +01:00
char Domain[Cns_MAX_BYTES_EMAIL_ADDRESS + 1];
2017-03-07 19:55:29 +01:00
char Info[Mai_MAX_BYTES_MAIL_INFO + 1];
2014-12-01 23:55:08 +01:00
unsigned NumUsrs;
};
/*****************************************************************************/
/***************************** Public prototypes *****************************/
/*****************************************************************************/
void Mai_SeeMailDomains (void);
void Mai_EditMailDomains (void);
void Mai_FreeListMailDomains (void);
2016-10-12 14:02:56 +02:00
bool Mai_CheckIfUsrCanReceiveEmailNotif (const struct UsrData *UsrDat);
void Mai_WriteWarningEmailNotifications (void);
2014-12-01 23:55:08 +01:00
void Mai_GetDataOfMailDomainByCod (struct Mail *Plc);
long Mai_GetParamMaiCod (void);
void Mai_RemoveMailDomain (void);
void Mai_RenameMailDomainShort (void);
void Mai_RenameMailDomainFull (void);
void Mai_RecFormNewMailDomain (void);
2016-11-16 23:19:52 +01:00
void Mai_ListEmails (void); // Creates an email message to students
2016-07-01 11:38:53 +02:00
2014-12-01 23:55:08 +01:00
bool Mai_CheckIfEmailIsValid (const char *Email);
2015-11-16 14:54:12 +01:00
bool Mai_GetEmailFromUsrCod (struct UsrData *UsrDat);
2017-03-13 13:17:53 +01:00
long Mai_GetUsrCodFromEmail (const char Email[Cns_MAX_BYTES_EMAIL_ADDRESS + 1]);
2015-11-16 14:54:12 +01:00
2018-10-15 14:07:12 +02:00
void Mai_ShowFormChangeMyEmail (bool IMustFillEmail,bool IShouldConfirmEmail);
void Mai_ShowFormChangeOtherUsrEmail (void);
2015-11-16 14:54:12 +01:00
void Mai_RemoveMyUsrEmail (void);
void Mai_RemoveOtherUsrEmail (void);
void May_NewMyUsrEmail (void);
void Mai_NewOtherUsrEmail (void);
2017-03-13 13:17:53 +01:00
bool Mai_UpdateEmailInDB (const struct UsrData *UsrDat,const char NewEmail[Cns_MAX_BYTES_EMAIL_ADDRESS + 1]);
2016-10-10 19:25:25 +02:00
2014-12-01 23:55:08 +01:00
bool Mai_SendMailMsgToConfirmEmail (void);
void Mai_ConfirmEmail (void);
void Mai_CreateFileNameMail (void);
void Mai_WriteWelcomeNoteEMail (struct UsrData *UsrDat);
2018-12-08 16:43:13 +01:00
void Mai_WriteFootNoteEMail (Lan_Language_t Language);
2014-12-01 23:55:08 +01:00
2017-01-27 15:21:01 +01:00
bool Mai_ICanSeeOtherUsrEmail (const struct UsrData *UsrDat);
2016-04-23 13:23:09 +02:00
2014-12-01 23:55:08 +01:00
#endif