Giter VIP home page Giter VIP logo

csv-based-php-mailing-list's Introduction

CSV Based PHP Mailing List

A simple PHP Mailing List that stores the name and email address in a CSV file and hence requires no additional database. Comes with form validation and AJAX interface.

Introduction

This script stores names and email address of subscribers in a simple .csv file in the mail directory that is secured by an .htaccess file. So only you can access it via FTP or SSH. Future verison may include admin page to access the file via web browser.

Usage

Begin by adding latest jQuery snippet in header.

<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>

Link the query.plugins.js file that contains validation libraries.

<script src="query.plugins.js" type="text/javascript"></script>

And call the required functions to validate and display message.

 $(document).ready(function() { 
    $('.message').hide();
	    $("#subscribe").validate();
	    $('#subscribe').ajaxForm(function() { 
		$('#subscribe').hide();	
		$('.message').fadeIn(300);		
    }); 
 }); 

Note that #subscribe is the id attribute of your form that you are going to use.

File Permissions

CHMOD mail directory to 755 and .csv file to 644.

In case 644 doesn't work, make sure you CHOWN the mail directory and the list.csv file to proper user and group on your server. If that doesn't work either, you can just CHMOD the csv file to 642 that ensures you are only letting people to write the csv file and deny read.

License

CSV Based PHP Mailing List is licensed under MIT.

csv-based-php-mailing-list's People

Contributors

gigacore avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.