0
Отвечен
is it possible to send e-mail from server?
Melih 9 лет назад
в Server Solutions / Windows Server
•
обновлен Dmitry - support (expert) 9 лет назад •
7
Is it possible to send an e-mail from server which will be triggered by a value received from knx datapoint ?
Сервис поддержки клиентов работает на платформе UserEcho
Hello!
Unfortunately, at the moment we don't have ready solutions for e-mail services.
What about this one? http://support.iridiummobile.net/topics/8821-sending-email-from-i3-server/
That's right, Nikolay! Sorry, it's my mistake.
still not working for me=( maybe I setup wrong?
Hello!
Nikolay, try to edit script like this
IR.AddListener(IR.EVENT_START,0,function(){ IR.SetGlobalListener(IR.EVENT_GLOBAL_TAG_CHANGE, function(name, value){ if(value != 0) { tag = name; IR.Log("Active Global Listener: " + name + "\tValue: " + value); send("hello", 0); send("auth", 0); } }); // When changing Virtual 1 and Virtual 2 tags via the web, emails of different content will be sent to the indicated e-mail address IR.SubscribeTagChange("Server.Tags.Virtual 1"); IR.SubscribeTagChange("Server.Tags.Virtual 2"); });The project has a mistake in the word hello
it should be like this send("hello", 0);
thanks nikolay. if it works that would solve my client wish.