Free Send Mails

angular angular-cli Build Status

free send mails This project is focused on making an email server available to static sites. In a simple and low code.

Example:

<form action="http://www.api.freesendmails.com/v1/mails/youmail" method="POST">
  <div>
    <label>Name:</label>
    <input type="text" name="_name">
  </div>
  <div>
    <label>Email address:</label>
    <input type="email" name="_email">
  </div>
  <div>
    <label>Message:</label>
    <input type="text" name="_message">
  </div>
  <button type="submit">Submit</button>
</form>

Demo app

Below you will be redirected to the direct demo of the site and you will also be able to see the two repositories of application codes.

Development

Familiarize yourself with the code and try to follow the same syntax conventions to make it easier for us to accept your pull requests.

Getting the Code

  1. Clone the free-send-mails-client project:
$ git clone https://github.com/grassiricardo/free-send-mails-client.git
$ cd free-send-mails-client

Run the application - (Without Docker)

  1. Install dependencies. We assume that you have already installed npm in your system.
$ npm install
  1. Run the application.
$ ng server

Run the application - (With Docker)

  1. Install dependencies and run application
$ docker-compose up --build