|
| Sending emails through MS Exchange Server |
| Iniciado por antonino.neri, 09,may. 2019 17:27 - 4 respuestas |
| |
| | | |
|
| |
| Publicado el 09,mayo 2019 - 17:27 |
Hi Gents,
I was looking inside the help for an answer but with no luck. Is there a way to configure an Exchange server connection in Windev and use this connection to send emails?
Thanks for your time.
BR |
| |
| |
| | | |
|
| | |
| |
| Publicado el 10,mayo 2019 - 09:19 |
| You can send the Mail with SMTP over Exchange. |
| |
| |
| | | |
|
| | |
| |
| Publicado el 10,mayo 2019 - 10:24 |
Hi Markus,
thanks for your care and answer. Can you give me more details on this? An example would be appreciated 
BR Antonino |
| |
| |
| | | |
|
| | |
| |
| Publicado el 13,mayo 2019 - 10:53 |
mymessage is Email mymessage..Sender = "sender@mailadress.com" Add(mymessage..Recipient, "recipient@mailadress.com") mymessage..Subject = "Subject Text" mymessage..Message = "Mailtext" mysession is emailSMTPSession mysession..ServerAddress = "Exchange Server" mysession..Port = 587 mysession..Name = "Exchange User" mysession..Password = "Exchange Password" EmailStartSession(mysession) EmailSendMessage(mysession,mymessage) |
| |
| |
| | | |
|
| | |
| |
| Publicado el 13,mayo 2019 - 17:07 |
Thanks for your example Markus. I am trying to use this but still getting errors  |
| |
| |
| | | |
|
| | | | |
| | |
|