定制 punarinta/email-auth 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

punarinta/email-auth

Composer 安装命令:

composer require punarinta/email-auth

包简介

Discover IMAP/SMTP settings, authenticate via any email

README 文档

README

A library to authenticate via an arbitrary email or/and to discover IMAP/SMTP settings by email address. Can be for example used in the projects where one doesn't need to keep a user entity in the database, but for which at the same time an authentication with service providers like Google is not enough.

Installation

  • Install Composer: https://getcomposer.org/download
  • Run php composer.phar require punarinta/email-auth:1.*
  • Assure "autoload.php" file from vendor directory is included

Sample usage

Authentication

use \EmailAuth\Auth;

$auth = new Auth;
if ($auth->login('your@email', 'your-password'))
{
  // You are authenticated.
}
elseif ($auth->status == Auth::STATUS_OAUTH_NEEDED)
{
  // Please authenticate via OAuth.
}
else
{
  // Thou shalt not pass!
}

Discovery

use \EmailAuth\Discover;
$discover = new Discover;

$config = $discover->imap('your@email');
echo "IMAP is on {$config['host']}:{$config['port']}, encryption is $config['encryption']}\n";

$config = $discover->smtp('your@email');
echo "SMTP is on {$config['host']}:{$config['port']}, encryption is $config['encryption']}\n";

Troubleshooting

Fatal error: Call to undefined function imap_open()

No IMAP module is installed for PHP. Here's an example for PHP7 and Ubuntu how to fix it.

sudo apt-get install php7.0-imap
sudo phpenmod imap

License

This project is licensed under the terms of MIT license.

统计信息

  • 总下载量: 60.03k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 5
  • 点击次数: 0
  • 依赖项目数: 1
  • 推荐数: 0

GitHub 信息

  • Stars: 3
  • Watchers: 1
  • Forks: 4
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2016-07-02

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固