#send and receive emails
1 messages · Page 1 of 1 (latest)
That's not simple?
Well, you need to decide how you wanna handle it
SMTP, POP3, IMAP, Via API request?
let's say SMTP/POP3
hi, i wrote an email server in javascript years ago, it's far from simple:
- implement the smtp/esmtp text protocols
- implement clients and servers
- find all the specs that build on these two protocols and implement them (dmarc, spf, tls, etc.)
- implement imap/pop3 (mailboxes)
- profit
if you just want to send and recieve emails without a mailbox system you just need 1 to 3
you'll have to write them yourself, or you can use C code to do it