
com.genexus.internet.IMailImplementation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gxmail Show documentation
Show all versions of gxmail Show documentation
Core classes for the runtime used by Java and Android apps generated with GeneXus
The newest version!
package com.genexus.internet;
public interface IMailImplementation
{
void MAPIChangeFolder(String folder, int newMessages, int markAsRead);
void MAPIEditWindow(int val);
void setMode(String mode);
void MAPILogin(String profile, int newMessages, int markAsRead);
void POP3Login(String host, int port, String user, String password, int newMessages, int delete, int timeout);
void SMTPLogin(String host, int port, String name, String address, String user, String password, int timeout, int authentication);
void send(GXMailMessage msg);
void receive(GXMailMessage msg);
void logout();
void SMTPLogout();
int getMessageCount();
void displayMessage(String message);
//void setAddressFormat(int format);
void setAttachDir(String dir);
int getErrCode();
String getErrDescription();
void cleanup();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy