AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Este contenido se ha traducido automáticamente.  Haga clic aquí  para ver la versión en inglés.
Ayuda / WLanguage / Funciones WLanguage / Comunicación / Gestión de correos electrónicos
  • Properties specific to emailNotesSession variables
  • Functions that use emailNotesSession variables
WINDEV
WindowsLinuxJavaReportes y ConsultasCódigo de Usuario (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Código Navegador
WINDEV Mobile
AndroidWidget Android iPhone/iPadIOS WidgetApple WatchMac Catalyst
Otros
Procedimientos almacenados
The emailNotesSession type is used to access a Lotus Notes messaging server in order to retrieve the messages found on this server and to send messages. You can define and change the characteristics of the connection using different WLanguage properties.
Note: For more details on the declaration of this type of variable and the use of WLanguage properties, see Declaring a variable.
Ejemplo
// Start the session
MyNotesSession is emailNotesSession
 
MyNotesSession..AddressDominoServer = "domino.mycompany.com"
MyNotesSession..LotusNotesDatabase = "email/accounting.nsf"
MyNotesSession..CertificatePath = SysDir(srMyDocuments) + ["\"] + "certificates\notes.id"
MyNotesSession..Password = EDT_Password
 
EmailStartSession(MyNotesSession)
Propiedades

Properties specific to emailNotesSession variables

The following properties can be used to handle emailNotesSession variables:
Name Type used Effect
AddressDominoServerCharacter string
  • Name of Domino server,
  • Empty string ("") if the database is a local database.
LotusNotesDatabaseCharacter stringName of Lotus Notes database containing the user data. This name corresponds to the path of ".NSF" file.
A relative path must be used if the Lotus Notes database is found on a Domino server.
If this property is not specified, the name of the Lotus Notes database will be read in the configuration file of the Lotus Notes client ("Notes.INI" file). The database used will correspond to the database of the user of Lotus Notes client for the current computer.
CertificatePathCharacter stringPath of certificate used to authenticate the user ("ID" file). This file is given by the administrator of the Domino server. This file is required to establish the connection to the server.
If this property is not specified, the path of the certificate will be read in the configuration file of the Lotus Notes client ("Notes.INI" file). The certificate used will correspond to the certificate of the user of the Lotus Notes client for the current computer.
PasswordCharacter string or Secret stringUser password. This password is given by the service provider or by the network administrator.
Novedad versión 2025
Cadenas secretas: Si utiliza el almacén de cadenas secretas, el tipo de cadena secreta utilizado para este parámetro debe ser "Cadena Ansi o Unicode".
Para obtener más información sobre cadenas secretas y cómo utilizar el almacén, consulte Almacén de cadenas secretas.
Observaciones

Functions that use emailNotesSession variables

EmailCloseSessionCloses an email management session depending on the selected mode (SMTP/POP3, IMAP, MS Exchange or Lotus Notes).
EmailDeleteMessageBorra el Email actual utilizando el protocolo actual (POP3, IMAP, MS Exchange, Lotus Notes o Outlook).
EmailGetAllRetrieves all the emails found on a server.
EmailNbMessageReturns the number of incoming messages currently found:
  • on the email server (POP3 protocol only).
  • in the Outlook messaging software.
EmailReadFirstReads the first incoming email according to the protocol used (POP3 or IMAP, MS Exchange, Lotus Notes or Outlook).
EmailReadFirstHeaderReads the header of the first incoming email according to the protocol used (POP3 or IMAP, Lotus Notes or Outlook).
EmailReadLastLee el último Email entrante según el protocolo utilizado (POP3 o IMAP, MS Exchange, Lotus Notes o Outlook).
EmailReadLastHeaderReads the header of the last email received, depending on the protocol used (POP3 or IMAP, Lotus Notes or Outlook)..
EmailReadMessageLee un mensaje entrante de acuerdo con el protocolo utilizado (POP3 o IMAP, Lotus Notes o Outlook).
EmailReadMessageHeaderReads the header of an incoming email according to the protocol used (POP3 or IMAP, Lotus Notes or Outlook).
EmailReadNextLee la Email entrante encontrada después de la Email actual según el protocolo (POP3 o IMAP, MS Exchange, Lotus Notes o Outlook).
EmailReadNextHeaderReads the header of the email found after the current email according to the protocol used (POP3 or IMAP, Lotus Notes or Outlook).
EmailReadPreviousLee el Email encontrado antes del Email actual según el protocolo utilizado (POP3 o IMAP, MS Exchange, Lotus Notes o Outlook).
EmailReadPreviousHeaderReads the header of the email found before the current email according to the protocol used (POP3 or IMAP, Lotus Notes or Outlook).
EmailSeekFirstNotesSeeks one or more emails according to specified criteria, in a local or remote Lotus Notes or Domino database.
EmailSendMessageSends an email using a given protocol (SMTP, MS Exchange, Lotus Notes, Outlook).
EmailStartSessionStarts an email management session based on the selected management mode (POP3, SMTP, IMAP or MS Exchange).
Versión mínima requerida
  • Versión 15
Esta página también está disponible para…
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 23/11/2024

Señalar un error o enviar una sugerencia | Ayuda local