Spinneret SMTP
lfreeze
Posts: 174
Please tell me if the Spinneret will have the SMTP function. I want to convert from my power hungry PINK module to the lower power Spinneret. Also please let me know if the functions as originally described, will still be available.
These are the functions I found in one of the earliest posts from Parallax.
""
Here are the features that we will incorporate in the official firmware:
UDP
TCP/IP
DHCP
DNS client
HTTP
Dynamical variables within HTTP files served from an SD card
A default web interface
FTP
SMTP
POP
Serial interface to other microcontrollers for dynamic HTTP pages
A command protocol compatible with our upcoming WiFi module (for changing settings remotely)
An open source GUI for connecting and changing settings from a PC (yes that includes Apple's PCs running OS X)
""
Thanks
Larry
These are the functions I found in one of the earliest posts from Parallax.
""
Here are the features that we will incorporate in the official firmware:
UDP
TCP/IP
DHCP
DNS client
HTTP
Dynamical variables within HTTP files served from an SD card
A default web interface
FTP
SMTP
POP
Serial interface to other microcontrollers for dynamic HTTP pages
A command protocol compatible with our upcoming WiFi module (for changing settings remotely)
An open source GUI for connecting and changing settings from a PC (yes that includes Apple's PCs running OS X)
""
Thanks
Larry
Comments
Larry
Sending an email over an SMTP server is surprisingly simple. See Wikipedia's example at http://en.wikipedia.org/wiki/SMTP#SMTP_transport_example. If you follow their example, and you don't need to check to see if it was successful, you can just open a TCP socket to port 25 and send this text: Using relay.example.org as the SMTP server, it will send an email from "Bob Example" <bob@example.org> to "Alice Example" <alice@example.com> and CC it to <theboss@example.com>. You will need to replace relay.example.org with an actual SMTP server, usually smtp.yourisp.net where yourisp is the domain of the ISP you are using.
David Carrier
Parallax Inc.
Larry