我正在发送传感器数据到蔚蓝表存储。如果列中的值小于特定值,我想发送电子邮件。
请找到附件中的图片
-If a value in GPIOPin column is less than 7 then an email alert has to be sent.
有人能指点一下怎么走吗?我尝试过用逻辑应用程序,但我不知道如何提供条件。
我的应用程序编译并发送带有以下代码的HTML消息:
String s = ...; // html text with normal & bold face, proportional & monospaced fonts, etc.
Message msg = new Message(s);
msg.setMimeType(Message.MIME_HTML);
sendMessage(subject, msg, recipients);
在iOS (iPhone X)上,使用正确的html呈现文本打开邮件应用程序。
在Android (三星Tab A)上,这是行不通的:
G