Search found 4 matches

by henkoegema
Tue Oct 02, 2018 10:07 pm
Forum: ESP32 boards
Topic: Gmail Mail read with Esp32
Replies: 6
Views: 6712

Re: Gmail Mail read with Esp32

In my MicroPython implementation sending mail to GMail is implemented since the last year using libcurl and works without issues ( curl module ). Reading mail , as well as listing IMAP directories, searching, etc. was implemented recently and will be pushed to the repository probably by the end ow ...
by henkoegema
Mon Oct 01, 2018 11:54 am
Forum: WiPy and CC3200 boards
Topic: Sending email
Replies: 36
Views: 181564

Re: Sending email

[quote=dhylands post_id=6055 time=1445443348 user_id=81] I know you can send emails using just telnet (http://www.yuki-onna.co.uk/email/smtp.html) so you should be able to do it without smtplib. [/quote] http://www.yuki-onna.co.uk/email/smtp.html Not Found The requested URL /email/smtp.html was not ...
by henkoegema
Mon Oct 01, 2018 11:51 am
Forum: WiPy and CC3200 boards
Topic: Sending email
Replies: 36
Views: 181564

Re: Sending email

[quote=henkoegema post_id=30530 time=1538143662 user_id=4304] I'm trying to use the examples in this thread to send e-mail from a Wemos D1 mini ESP8266 loaded with micropython. It already fails at the first line: >>>import smtplib Traceback (most recent call last): File "<stdin>", line 1, in <module...
by henkoegema
Fri Sep 28, 2018 2:07 pm
Forum: WiPy and CC3200 boards
Topic: Sending email
Replies: 36
Views: 181564

Re: Sending email

I'm trying to use the examples in this thread to send e-mail from a Wemos D1 mini ESP8266 loaded with micropython. It already fails at the first line: >>>import smtplib Traceback (most recent call last): File "<stdin>", line 1, in <module> ImportError: no module named 'smtplib' Q: how to import modu...