Search found 232 matches: send email

Return to advanced search

Re: Send email alert

by diddledad ¦ Mon Jan 26, 2015 11:53 pm ¦ Forum: Random Lua Chat ¦ Topic: Send email alert ¦ Replies: 23 ¦ Views: 39791

... I get a restart when running the latest code on FW 0.9.5 build 20150107. If I use the code example from 19 Jan and input through the console, the email gets sent using gmail. My heap shows 22144 after uploading init and your latest code. What is your heap right before your dofile? I really want ...

Re: Send email alert

by oskar ¦ Sun Jan 25, 2015 5:38 pm ¦ Forum: Random Lua Chat ¦ Topic: Send email alert ¦ Replies: 23 ¦ Views: 39791

... with latest firmware. Tried to pass the commands as an array which made it run out of heap, also adding checks on all ifs or even putting the sends in a separate function makes it run out of heap and restart the module. So a a quick and dirty way to send mail through gmail smtp. Do a node.restart() ...

Re: Send email alert

by mct75 ¦ Sat Jan 24, 2015 1:26 pm ¦ Forum: Random Lua Chat ¦ Topic: Send email alert ¦ Replies: 23 ¦ Views: 39791

+1 on SMTP not working unless it's done via the console. I'm using a local relay so no auth problems. Manually banging out conn:send("HELO local.domain.name\r\n") etc works fine.

I think non-blocking delays are the solution, but I can't get any tmr.alarm() to work.

Re: Send email alert

by gwizz ¦ Mon Jan 19, 2015 8:14 pm ¦ Forum: Random Lua Chat ¦ Topic: Send email alert ¦ Replies: 23 ¦ Views: 39791

Hey - this rocks! You guys/galls seem to have made a great feature already.

I'd like to add my +1 to the ability to add an attachment, and could difficulties with gmail be timing related?

Delays can be added without blocking network, using tmr.alarm(blah, blah, blah) :)