blob: b9baf792ef5c33b2b6e33a9ec8417b104ff36c7b (
plain) (
tree)
|
|
#ifndef LYMAIL_H
#define LYMAIL_H
#ifndef LYSTRUCTS_H
#include <LYStructs.h>
#endif /* LYSTRUCTS_H */
#ifdef SH_EX
#define USE_BLAT_MAILER 1
#else
#define USE_BLAT_MAILER 0
#endif
#ifdef VMS
#define USE_VMS_MAILER 1
#else
#define USE_VMS_MAILER 0
#endif
/*
* Ifdef's in case we have a working popen/pclose, useful for piping to the
* mail program.
*/
#if !defined(HAVE_POPEN) || USE_VMS_MAILER || defined(DOSPATH) || defined(__CYGWIN__)
#define CAN_PIPE_TO_MAILER 0
#else
#define CAN_PIPE_TO_MAILER 1
#endif
extern BOOLEAN term_letter;
extern BOOLEAN LYSystemMail(void);
extern BOOLEAN LYMailPMDF(void);
extern FILE *LYPipeToMailer(void);
extern int LYSendMailFile(char *the_address,
char *the_filename,
char *the_subject,
char *the_ccaddr,
char *message);
extern void mailform(const char *mailto_address,
const char *mailto_subject,
const char *mailto_content,
const char *mailto_type);
extern void mailmsg(int cur,
char *owner_address,
char *filename,
char *linkname);
extern void reply_by_mail(char *mail_address,
char *filename,
const char *title,
const char *refid);
#endif /* LYMAIL_H */
|