You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.9 KiB
48 lines
1.9 KiB
/*
|
|
** Zabbix
|
|
** Copyright (C) 2001-2023 Zabbix SIA
|
|
**
|
|
** This program is free software; you can redistribute it and/or modify
|
|
** it under the terms of the GNU General Public License as published by
|
|
** the Free Software Foundation; either version 2 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 General Public License for more details.
|
|
**
|
|
** You should have received a copy of the GNU General Public License
|
|
** along with this program; if not, write to the Free Software
|
|
** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
**/
|
|
|
|
#ifndef ZABBIX_ZBXMEDIA_H
|
|
#define ZABBIX_ZBXMEDIA_H
|
|
|
|
#include "zbxsysinc.h" /* using "config.h" would be better, but it causes warnings when compiled with Net-SNMP */
|
|
|
|
#define ZBX_MEDIA_CONTENT_TYPE_TEXT 0
|
|
#define ZBX_MEDIA_CONTENT_TYPE_HTML 1
|
|
#define ZBX_MEDIA_CONTENT_TYPE_MULTI 2 /* multipart/mixed message with pre-formatted message body */
|
|
|
|
typedef struct
|
|
{
|
|
char *addr;
|
|
char *disp_name;
|
|
}
|
|
zbx_mailaddr_t;
|
|
|
|
int send_email(const char *smtp_server, unsigned short smtp_port, const char *smtp_helo, const char *smtp_email,
|
|
const char *mailto, const char *inreplyto, const char *mailsubject, const char *mailbody,
|
|
unsigned char smtp_security, unsigned char smtp_verify_peer, unsigned char smtp_verify_host,
|
|
unsigned char smtp_authentication, const char *username, const char *password,
|
|
unsigned char content_type, int timeout, const char *config_source_ip, char *error,
|
|
size_t max_error_len);
|
|
int send_sms(const char *device, const char *number, const char *message, char *error, int max_error_len);
|
|
|
|
char *zbx_email_make_body(const char *message, unsigned char content_type, const char *attachment_name,
|
|
const char *attachment_type, const char *attachment, size_t attachment_size);
|
|
|
|
#endif
|