|
- Action of EmailOpenMail
- In which code should I use EmailOpenMail?
- Special cases
- Application in the background: Android 10 specific case
EmailOpenMail (Function) In french: EmailOuvreMessagerie
// Opens the messaging software EmailOpenMail()
// Opens the software and specifies the email recipient // the subject and the text of email EmailOpenMail("pcsoft@WINDEV.com", ... "Subject: LST", "Text: The LST summary")
Syntax
EmailOpenMail([<Email address> [, <Email subject> [, <Message body>]]])
<Email address>: Optional character string with quotes Email address of recipient. This address will be displayed in the window of messaging software. <Email subject>: Optional character string with quotes Email subject that will be displayed in the window of messaging software. <Message body>: Optional character string with quotes Text of message. Non-alphanumeric characters are automatically converted in order to allow for special characters to be passed (CR characters, tabulations, ...). Remarks Versions 25 and later New in version 25
Related Examples:
|
Cross-platform examples (WINDEV Mobile): WM Managing Contacts
[ + ] This example presents the management of contacts for Android et iOS. It is used o: - list the contacts found on the phone - call the contacts - send SMSs to the contacts - ...
|
This page is also available for…
|
|
|
| |
| | //Opens the default messaging software: //Abre o software de mensagens padrão:
EmailOpenMail(EDT_email,EDT_assunto,EDT_messagem)
//Exemplo Blog e Video - Nova Gravação http://windevdesenvolvimento.blogspot.com.br/2016/12/aula-1002-windevmobile-76-emailopenmail.html https://www.youtube.com/watch?v=a4JevL5s-xc |
|
|
|
| |
| |
| |
|
| | Exemplo EmailOpenMail
EmailOpenMail(EDT_email,EDT_assunto,EDT_messagem)
//Blog com Video e Exemplo
http://windevdesenvolvimento.blogspot.com.br/2016/10/aula-943-windev-email-1-emailopenmail.html
https://www.youtube.com/watch?v=BxI-CrU19-Y
|
|
|
|
| |
| |
| |
| |
| |
| |
| | |
| |