Omnisend: Ecommerce Email Marketing and SMS Platform

Related tags

Email omnisend
Overview

Omnisend

Latest Stable Version Total Downloads Latest Unstable Version License PHP Version Require

Omnisend: Ecommerce Email Marketing and SMS Platform

Version

  • v1.x Support all PHP Version >=5.6
  • v2.x Support all PHP Version >=7.0

Installation

Simple installation with Composer

composer require nguyenanhung/omnisend

Example

";
print_r($result);
echo "
"; ">

/**
 * Project omnisend
 * Created by PhpStorm
 * User: 713uk13m 
    
 * Copyright: 713uk13m 
    
 * Date: 09/09/2021
 * Time: 10:32
 */
 
use nguyenanhung\Omnisend\Services\Omnisend;

require_once __DIR__ . 'vendor/autoload.php';

$options = [
    'debugStatus' => true,
    'debugLevel'  => null,
    'loggerPath'  => '/tmp',
];
$apiKey  = 'xxx';

$omnisend = new Omnisend($options);
$omnisend->setApiKey($apiKey);


// Example Request Events

$params = [
    'eventId' => 'xxx'
];
$body   = [
    'email'  => '[email protected]',
    'fields' => 'abc'
];

$result = $omnisend->withPostRequest()->events($body);

echo "
";
print_r($result);
echo "
"
;

See more at: https://github.com/nguyenanhung/omnisend/tree/main/example

Contact

If any question & request, please contact following information

Name Email Skype Facebook
Hung Nguyen [email protected] nguyenanhung5891 @nguyenanhung

From Hanoi with Love <3

You might also like...
 PHPMailer – A full-featured email creation and transfer class for PHP
PHPMailer – A full-featured email creation and transfer class for PHP

PHPMailer – A full-featured email creation and transfer class for PHP Features Probably the world's most popular code for sending email from PHP! Used

A ready-to-use PHP script for sending Emails with an HTML Template will use a Gmail account as the sender and you will not need any email server. Powered by PHPMailer.
A ready-to-use PHP script for sending Emails with an HTML Template will use a Gmail account as the sender and you will not need any email server. Powered by PHPMailer.

Gmail Email Sender by PHP A ready-to-use PHP script for sending Emails with an HTML Template will use a Gmail account as the sender and you will not n

The classic email sending library for PHP
The classic email sending library for PHP

PHPMailer – A full-featured email creation and transfer class for PHP Features Probably the world's most popular code for sending email from PHP! Used

PHP library for parsing plain text email content.

EmailReplyParser EmailReplyParser is a PHP library for parsing plain text email content, based on GitHub's email_reply_parser library written in Ruby.

Send email across all platforms using one interface

Send email across all platforms using one interface. Table Of Content Requirements Installation Providers AmazonSES Mailgun Mailjet Mandrill Postmark

Small PHP library to valid email addresses using a number of methods.

Email Validator Small PHP library to valid email addresses using a number of methods. Features Validates email address Checks for example domains (e.g

Library for using online Email providers

Stampie Stampie have been moved to the "Flint" organization in order to get a better collaborative flow. Stampie is a simple API Wrapper for different

Library for using online Email providers

Stampie Stampie is a simple API Wrapper for different email providers such as Postmark and SendGrid. It is very easy to use and to integrate into your

Sending Email via Microsoft Exchange Web Services made Easy!

Send Mail via Exchange Web Services! Sending Email via Microsoft Exchange Web Services (EWS) made easy! Installation Install via Composer composer req

Releases(v2.0.0)
  • v2.0.0(Sep 26, 2021)

  • v1.0.3(Sep 26, 2021)

  • v1.0.2(Sep 20, 2021)

    • [x] Add GitHub Action Workflows
    • [x] Hiện tại, thư viện hỗ trợ các phiên bản PHP: ^PHP 7.1 || ^PHP 8.0.
    • [x] Optimize code để tối ưu khả năng tương thích và tốc độ với PHP 7 trở lên
    Source code(tar.gz)
    Source code(zip)
  • v1.0.1(Sep 15, 2021)

  • v1.0.0(Sep 9, 2021)

    Omnisend

    Omnisend: Ecommerce Email Marketing and SMS Platform

    Installation

    Simple installation with Composer

    composer require nguyenanhung/omnisend
    

    Example

    <?php
    /**
     * Project omnisend
     * Created by PhpStorm
     * User: 713uk13m <[email protected]>
     * Copyright: 713uk13m <[email protected]>
     * Date: 09/09/2021
     * Time: 10:32
     */
     
    use nguyenanhung\Omnisend\Services\Omnisend;
    
    require_once __DIR__ . 'vendor/autoload.php';
    
    $options = [
        'debugStatus' => true,
        'debugLevel'  => null,
        'loggerPath'  => '/tmp',
    ];
    $apiKey  = 'xxx';
    
    $omnisend = new Omnisend($options);
    $omnisend->setApiKey($apiKey);
    
    
    // Example Request Events
    
    $params = [
        'eventId' => 'xxx'
    ];
    $body   = [
        'email'  => '[email protected]',
        'fields' => 'abc'
    ];
    
    $result = $omnisend->withPostRequest()->events($body);
    
    echo "<pre>";
    print_r($result);
    echo "</pre>";
    

    See more at: https://github.com/nguyenanhung/omnisend/tree/main/example

    Contact

    If any question & request, please contact following information

    | Name | Email | Skype | Facebook | | ----------- | -------------------- | ---------------- | ------------- | | Hung Nguyen | [email protected] | nguyenanhung5891 | @nguyenanhung |

    From Hanoi with Love <3

    Source code(tar.gz)
    Source code(zip)
Owner
Hung Nguyen
Một tiêu một kiếm dọc giang hồ
Hung Nguyen
Magento 2 SMTP - AVADA Email Marketing Integration

SMTP Extension for Magento 2 allows the owner offer a Magento 2 store to custom SMTP (Simple Mail Transfer Protocol) server which transmits email messages. Through the SMTP server, messages will be delivered directly and automatically to the chosen customers. It offers flexible configurations with 21 different SMTP servers such as Gmail, Hotmail, O2 Mail, Office365, Mail.com, Send In Blue, AOL Mail Orange, GMX, Outlook, Yahoo, Comcast, or Custom SMTP - for your own SMTP server, etc.

Yodo1117 1 Jan 25, 2022
Mautic: Open Source Marketing Automation Software.

Mautic Introduction Supported Versions Branch RC Release Initial Release Active Support Until Security Support Until * 2.15 27 Sep 2019 8 Oct 2019 8 O

Mautic 5.6k Jan 1, 2023
This package adds support for verifying new email addresses: when a user updates its email address, it won't replace the old one until the new one is verified.

Laravel Verify New Email Laravel supports verifying email addresses out of the box. This package adds support for verifying new email addresses. When

Protone Media 300 Dec 30, 2022
Magento 2 Email Catcher or Email Logger Module.

Magento 2 Module Experius email catcher / - logger

Experius 49 Dec 16, 2021
Cross-language email validation. Backed by a database of over 38 000 throwable email domains.

Cross-language temporary (disposable/throwaway) email detection library. Covers 38038+ fake email providers.

Francois-Guillaume Ribreau 1.4k Jan 9, 2023
Mail sending module for Mezzio and Laminas MVC with support for file attachment and template email composition

This module provides an easy and flexible way to send emails from Mezzio and Laminas MVC applications (formerly known as Zend Expressive and Zend MVC). It allows you to pre-configure emails and transports, and then send those emails at runtime.

null 82 Jan 16, 2022
Fetch is a library for reading email and attachments, primarily using the POP and IMAP protocols

Fetch Fetch is a library for reading email and attachments, primarily using the POP and IMAP protocols. Installing N.b. A note on Ubuntu 14.04 (probab

Tedious Developments 501 Jan 4, 2023
📧 Handy email creation and transfer library for PHP with both text and MIME-compliant support.

?? Handy email creation and transfer library for PHP with both text and MIME-compliant support.

Nette Foundation 401 Dec 22, 2022
EMAIL, PASSWORD AND USERNAME GENERATOR

Email-Generator EMAIL, PASSWORD AND USERNAME GENERATOR Install on desktop : Install XAMPP Added environment variable system path => C:\xampp\php downl

Alex 2 Jan 8, 2022
Stampie is a simple API Wrapper for different email providers such as Postmark and SendGrid.

Stampie Stampie is a simple API Wrapper for different email providers such as Postmark and SendGrid. It is very easy to use and to integrate into your

Stampie 289 Dec 5, 2022