首页 > 下载 >  类库下载 > 邮件类库

  • 添加邮箱地址到数据库是很正常的,邮箱地址是一种特殊的形式,我们在添加之前往往是需要验证的,当需要验证邮箱地址是否有效时,本类库刚好就起了作用。

    邮件类库57622018-01-15
  • <?php namespace Stampie\Adapter; use Buzz\Browser; use Buzz\Message\Form\FormUpload; use Buzz\Message\RequestInterface; class Buzz implements AdapterInterface {     /**      * @var Browser $browser      */     protected $browser;     /**      * @param Browser $browser      */     public function __construct(Browser $browser)     {         $this->browser = $browser;     }     /**      * @return Browser      */     public function getBrowser()     {         return $this->browser;     }这是一份邮件服务的PHP库,需要的朋友可以下载使用。

    邮件类库64052018-01-04
  • <?php /**  * Simple autoloader that follow the PHP Standards Recommendation #0 (PSR-0)  * @see https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-0.md for more informations.  *  * Code inspired from the SplClassLoader RFC  * @see https://wiki.php.net/rfc/splclassloader#example_implementation  */ spl_autoload_register(function ($className) {     $className = ltrim($className, '\');     $fileName = '';     if ($lastNsPos = strripos($className, '\')) {         $namespace = substr($className, 0, $lastNsPos);         $className = substr($className, $lastNsPos + 1);         $fileName = str_replace('\', DIRECTORY_SEPARATOR, $namespace) . DIRECTORY_SEPARATOR;     }     $fileName = __DIR__ . DIRECTORY_SEPARATOR . $fileName . $className . '.php';     if (file_exists($fileName)) {         require $fileName;         return true;     }     return false; });这是一份PHP邮件回复解析器库,需要的朋友可以下载使用。

    邮件类库53792018-01-04
  • <?php class HasMxTest extends PHPUnit_Framework_TestCase {     /**      * Set up for tests in this file.      *      * @access private      */     private function setupTest()     {         $this->validator = new \EmailValidator\Validator();     }     /**      * Test hasMx      *      * @cover \EmailValidator\Validator::hasMx      */     public function testHasMx()     {         $this->setupTest();         // Not an email         $this->assertNull(             $this->validator->hasMx('example.com')         );         // No Records         $this->assertFalse(             $this->validator->hasMx('example@example.com')         );         // Records         $this->assertTrue(             $this->validator->hasMx('example@google.com')         );         $this->assertTrue(             $this->validator->hasMx('example@yahoo.com')         );     } }这是一份PHP的邮箱验证库,需要的朋友可以下载使用

    邮件类库56262018-01-04
  • 邮件模板中一个内联的CSS库

    邮件类库47862017-12-05
  • 一个邮件回复解析器库

    邮件类库43992017-12-05
  • 一个小巧的邮箱验证库

    邮件类库48762017-12-05
  • 好用的邮件库

    邮件类库48992017-12-05
  • 关于邮件服务的库,比如SendGrid、PostMark、MailGun和Mandrill

    邮件类库60552017-12-05
  • php实现带附件邮件类实例

    邮件类库53462017-11-24
  • PHP收邮件receiveMail类

    邮件类库93722017-11-13
  • PHP邮件发送类 支持发送纯文本邮件和HTML格式的邮件,可以多收件人,多抄送,多秘密抄送,带附件的邮件.

    邮件类库67172017-11-02