Giter Site home page Giter Site logo

sendwithus_parse's Introduction

Sendwithus Parse Module

About

This is a Parse.com Cloud Code Module for the Sendwithus API based on the official Sendwithus NodeJS Client, check there for the most up to date usage documentation.

Installation

Copy sendwithus.js to your Parse Cloud Code cloud directory

Usage

All callbacks accept err and data:

var callback = function(err, data) {
    if (err) {
        console.log(err.message, err.status);
    } else {
        console.log(data);
    }
};

List Your Emails

var api = require('cloud/sendwithus.js')(API_KEY);
api.emails(callback);

Send an Email

Call with REQUIRED parameters only

The email_data field is optional, but highly recommended!

ar api = require('cloud/sendwithus.js')(API_KEY);
api.send({
    email_id: EMAIL_ID,
    recipient: { address: '[email protected]'}
}, callback);

Call with REQUIRED parameters and email_data

ar api = require('cloud/sendwithus.js')(API_KEY);
api.send({
    email_id: EMAIL_ID,
    recipient: {
        address: '[email protected]', // required
        name: 'Matt and Brad' 
    },
    email_data: { first_name: 'Matt' } 
}, callback);

Optional Sender

sender['address'] is a required sender field

var api = require('cloud/sendwithus.js')(API_KEY);
api.send({
    email_id: EMAIL_ID,
    recipient: { address: '[email protected]'},
    email_data: { first_name: 'Matt' },
    sender: {
        address: '[email protected]', // required
        name: 'Company' 
    }
}, callback);

Optional Sender with reply_to address

sender['name'] and sender['reply_to'] are both optional

var api = require('cloud/sendwithus.js')(API_KEY);
api.send({
    email_id: EMAIL_ID,
    recipient: { address: '[email protected]'},
    email_data: { first_name: 'Matt' },
    sender: {
        address: '[email protected]', // required
        name: 'Company',
        reply_to: '[email protected]'
    }
}, callback);

Optional BCC/CC

var api = require('sendwithus')(API_KEY);
api.send({
    email_id: EMAIL_ID,
    recipient: { address: '[email protected]'},
    bcc: [{ address: '[email protected]' }],
    cc: [
        { address: '[email protected]' },
        { address: '[email protected]' }
    ]
}, callback);

Error cases

malformed request

	> err.status;
	400

bad api key

	> err.status;    
	403

sendwithus_parse's People

Contributors

mrmch avatar gschier avatar nrempel avatar roycef avatar bvanvugt avatar

Watchers

Pankaj Agrawal 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.