All Projects → TheCreeper → go-pop3

TheCreeper / go-pop3

Licence: BSD-2-Clause license
Package pop3 provides an implementation of the Post Office Protocol - Version 3.

Programming Languages

go
31211 projects - #10 most used programming language

Projects that are alternatives of or similar to go-pop3

Magma
The magma server daemon, is an encrypted email system with support for SMTP, POP, IMAP, HTTP and MOLTEN,. Additional support for DMTP and DMAP is currently in active development.
Stars: ✭ 1,740 (+8185.71%)
Mutual labels:  pop
buffalo-pop
A plugin to use gobuffalo/pop with buffalo
Stars: ✭ 19 (-9.52%)
Mutual labels:  pop
GemBox.Email.Examples
Read and write email files (MSG, EML, MHTML), and compose, receive and send email messages using POP, IMAP, SMTP, and EWS in a simple and efficient way.
Stars: ✭ 18 (-14.29%)
Mutual labels:  pop
Facebook Pop Tutorial
Facebook's Pop Framework, By Examples
Stars: ✭ 181 (+761.9%)
Mutual labels:  pop
enough mail
IMAP, POP3 and SMTP clients for Dart developers. Contains both low level as well as a high level API.
Stars: ✭ 78 (+271.43%)
Mutual labels:  pop3
squirrelmail
🌰️🐿️ SquirrelMail GitHub Repository (PHP 7-OK!)
Stars: ✭ 42 (+100%)
Mutual labels:  pop3
Jxpopupview
一个轻量级的自定义视图弹出框架
Stars: ✭ 117 (+457.14%)
Mutual labels:  pop
mail-plus
邮件收取工具包,支持pop,imap,exchange协议的邮箱以及企业邮箱
Stars: ✭ 31 (+47.62%)
Mutual labels:  pop
PimplePopper
Game to pop pimples using the awesome Godot Engine
Stars: ✭ 23 (+9.52%)
Mutual labels:  pop
yapople
Yet another POP3 email library
Stars: ✭ 22 (+4.76%)
Mutual labels:  pop3
Tfpopup
🚀🚀🚀TFPopup不生产弹框,它只是弹框的弹出工🚀🚀🚀默认支持多种动画方式一行调用,支持完全自定义动画.
Stars: ✭ 182 (+766.67%)
Mutual labels:  pop
Jh flutter demo
a flutter demo
Stars: ✭ 229 (+990.48%)
Mutual labels:  pop
imail
small mail server
Stars: ✭ 88 (+319.05%)
Mutual labels:  pop3
Persistentbottomnavbar
A highly customizable persistent bottom navigation bar for Flutter
Stars: ✭ 165 (+685.71%)
Mutual labels:  pop
StackFlowView
Enforce stack behaviour for custom UI flow.
Stars: ✭ 35 (+66.67%)
Mutual labels:  pop
Xlbubbletransition
iOS ViewController间切换的转场动画
Stars: ✭ 127 (+504.76%)
Mutual labels:  pop
Mailozaurr
Mailozaurr is a PowerShell module that aims to provide SMTP, POP3, IMAP and probably some other ways to interact with Email. Underneath it uses MimeKit and MailKit libraries written by Jeffrey Stedfast.
Stars: ✭ 107 (+409.52%)
Mutual labels:  pop3
PopOverAlert
PopOverAlert is a PopOver style alert view.
Stars: ✭ 56 (+166.67%)
Mutual labels:  pop
autoconfig
The ISPDB, Thunderbird's database of mail configuration files.
Stars: ✭ 25 (+19.05%)
Mutual labels:  pop3
fapro
Fake Protocol Server
Stars: ✭ 1,338 (+6271.43%)
Mutual labels:  pop3

go-pop3

PkgGoDev

Package pop3 provides an implementation of the Post Office Protocol - Version 3.

Example

// Create a connection to the server
c, err := pop3.DialTLS("pop3.riseup.net:993")
if err != nil {
	log.Fatal(err)
}
defer c.Quit()

// Authenticate with the server
if err = c.Auth("username", "password"); err != nil {
	log.Fatal(err)
}

// Print the UID of all messages in the maildrop
messages, err := c.UidlAll()
if err != nil {
	log.Fatal(err)
}
for _, v := range messages {
	log.Print(v.UID)
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].