Amazing Features of Amazon SES Email Marketing

Amazon Simple Email Sending (Amazon SES) service is a reliable, easy to use, robust, cost-effective and highly scalable email sending service that allows businesses and firms to send transactional and marketing messages in bulk and one has to only pay for what he or she uses. With  Amazon SES, businesses can now access a high-quality, scalable email …

Login With Google CodeIgniter : OAuth API PHP Client

Google’s OAuth 2.0 APIs can be used for open authentication. By this we can access user’s data from server after authorizing user via Google account. In this tutorial, we are going to explain how you can implement Google open authentication to connect with your website using CodeIgniter. You can achieve this login mechanism using Google API php …

Setup Amazon SES Account – Send Cheaper Emails

MailGet is basically an application through which you can send bulk emails by connecting with any SMTP.  In this documentation, we’re going to see the steps that are needed to create an Amazon SES account. Once you have created Amazon SES account, you will get Amazon SES credentials namely “Access Key ID” and “Secret Access Key”, which you will …

Login With Facebook PHP CodeIgniter : OAuth Login

OAuth is simply an open authentication that is used for providing access to the server data after authorizing a user via third party services. In this tutorial, we are going to explain how you can implement Facebook login via open authentication to connect with your website using CodeIgniter. You can achieve this login mechanism using …

Amazon SES Email Client: Send Emails 100X Cheaper with MailGet

We used to spend huge amount of money on email marketing. Till last month, we used to pay nearly $395 every month for email marketing services. We thought this should change and thats when we decided to build MailGet. MailGet – Email Service Provider is an Amazon SES email client that use Amazon SES for email sending. MailGet is …

CodeIgniter – Getting Started With MVC

CodeIgniter is a simple web application development framework for PHP . By its modular approach we can use its inbuilt libraries and helpers. It has a three-tier architecture i.e. Model-View-Controller (MVC) which is easy to use by which the functional process logic, data access, data storage and user interface can be developed. You can also refer our previous tutorial For CodeIgniter installation and configuration. …

CodeIgniter Installation and Configuration

CodeIgniter is a simple web application development framework for PHP. By its modular approach we can use its inbuilt libraries and helpers in our application. We can separate logic from presentation by using a Model-View-Controller (MVC) pattern. In this tutorial we are going to explain you, how to install and configure the CodeIgniter framework. Below mentioned are the step by …

CodeIgniter Image Library For Image Manipulation

While developing any web application there is a need to manipulate image dynamically such as while uploading an image. In this tutorial we are going to explain an example, which shows how to use CodeIgniter’s image library for Image Manipulation. You can find Image_Lib.php class inside your CodeIgniter project’s system/libraries folder. First load image_lib library in your …

CodeIgniter Calendar Class For Creating Dynamic Calendar

In this tutorial we are going to explain an example, which shows how to use CodeIgniter’s Calendar class which enables you to create dynamic calendars. By using calendar template you can format the calendars in your own way as it gives 100% control over every aspect of its design. To load calendar library use: Syntax: $this->load->library(‘calendar’); You …