AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Ayuda / Desarrollar una aplicación o un sitio web / Controles, ventanas y páginas / Controles: tipos disponibles / Control Área de texto enriquecido
  • Search performed in the emails of an Outlook session
EmailSeekFirst (Example)
Search performed in the emails of an Outlook session
This example is used to find the emails containing the "PC Soft" string in the subject or in the message body. Only the incoming emails are taken into account
// Start an Outlook session
SessionID is int
SessionID = EmailStartOutlookSession("")
...
IF EmailSeekFirst(SessionID, emailSubject + emailBody, ...
"PC Soft") = True THEN
// Enumerate the emails found
WHILE Email.Out = False
// Displays the sender and subject in a Table control
TableAdd(TABLE_EmailFound, Email.Sender + ...
TAB + Email.Subject)
// Next email found
EmailReadNext(SessionID)
END
ELSE
Info("No email was found")
END
Versión mínima requerida
  • Versión 11
Esta página también está disponible para…
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 27/05/2022

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