npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

mail-free

v1.1.9

Published

Send mail free and easy

Downloads

7

Readme

mail-free

Send emails free and easy.

Rate on Openbase

mail-free is an email package that let's send emails any number of times and any numbber of pepole.

Get started

Install NPM dependency

npm install --save mail-free

Include

var mail=require('mail-free')

Login in your account

mail.login('Service','Sender mail address','Sender password');

Mail to reciever

mail.mail('Reciever mail address','Subject of mail','Body of the mail');

Common use case examples

Include

var mail=require('mail-free')

login

mail.login("Gmail","[email protected]","password@123");

mail

mail.mail('[email protected]',"Hello","How its going");

Response

Email sent: 250 2.0.0 OK  1603766622 s8sm100565pjn.46 - gsmtp
{ accepted: [ '[email protected]' ],
  rejected: [],
  envelopeTime: 766,
  messageTime: 1459,
  messageSize: 251,
  response: '250 2.0.0 OK  1603766623 kk14sm95620pjb.47 - gsmtp',
  envelope: { from: '[email protected]', to: [ '[email protected]' ] },
  messageId: '<e6914739-021e-9522-c39a-05df5fccef82@goorm>' }
Email sent: 250 2.0.0 OK  1603766623 kk14sm95620pjb.47 - gsmtp ^C

Service & Permission for Errors

Gmail

Use :

    service: 'Gmail',

Goto : 

    https://myaccount.google.com/lesssecureapps
    
Enable : 

    Allow less secure apps: ON
    
Goto :
     
     https://accounts.google.com/b/0/DisplayUnlockCaptcha
     
 Enable :
 
    Allow Acess

Yahoo


    service: 'Yahoo',

Goto : 

    https://login.yahoo.com/account/security

Enable : 

    Allow apps that use less secure sign in

Contribution

Very much appreciate any types of donation and support.

Code

mail-free follows github convention for contributions. Here are some steps:

  1. Fork the repo to your github account
  2. Checkout code from your github repo to your local machine.
  3. Make code changes and don't forget add related tests.
  4. Run npm test locally before pushing code back.
  5. Create a Pull Request on github.
  6. Code review and merge
  7. Changes will be published to NPM within next version.