Featured
-
Top 5 Features That Make Laravel the Best PHP Framework for Development
Laravel is a free open source Web Framework of PHP
by abhishek.tiwari.458 -
Best 5 Lightweight PHP Frameworks for REST APIs Development
Are you ready to develop the Rest AP
by ankur.kumar -
PHP: Full-Stack Framework vs Micro Framework
A web framework can be described as a software fra
by ankit.bhatia -
How to get facebook profile picture by Facebook App
If you would like to get your profile picture in f
by vivek.rastogi -
Creating RESTful API in cakephp
This tutorial will help you to learn how to create
by pushpendra.rawat
Tags
How to send attachments in email using Codeingniter
Hello Reader's, If you have developed the web project in Codeigniter and want to send attachments using emails then in this blog you can learn how to do this.
Sending the attachments can be done by several way in php, We will do th...
How to send email via sendgrid curl using PHP
Hello Reader's if you are looking to send emails via curl using PHP then this blog is helpful to you.
Curl is a tool which sent the data in forms to any other server with multiple data. So lets get started working on sending email with ...
Send email in CakePHP from localhost using CakeEmail Component
Email is the important functionality in web applications. CakeEmail is a class used to send Email from your application.
By using CakeEmail class you can send email any where in your application. When we use CakeEmail in our application, it re...
How to Make Forgot Password in Codeigniter
Many times the user forget their password which they opt at the time of registration, and the developer who is new in Codeigniter framework struggles to create this module. So, in this tutorial, I will guide you to make the forgot password module...
How to disable email address link in html email ?
I am writing this blog, because there was a case when I have to send email without the link. For example: If in email I send some data:
<p>Your Email id is: amuk.saxena@evontech.com.</p>
Now when the email is sent to gmail, then...
CakeEmail
CakeEmail
class CakeEmail(mixed $config = null)
CakeEmail is a new class introduce to send email. With the help of this class one can send email from any where in the application.The CakeEmail class replaces the earlier used EmailComponent ...
How to integrate PHP Mailer
Hello Reader's!
If you want to send email some other than php mail then php mailer is the best option. PHPMailer provides an object oriented interface, but in case of php mail() is not object oriented. Let's see how to integarte php mailer funct...
How to send mail using Codeigniter mail function in php
Hello Reader's! If you are working on PHP framework, Codeigniter then you should learn how to send mail by its functions.
CI offers you the best way to configure the email and send the mail and you just have to call it on the place required.
...
How to send attachments in mail using PHP
Hello Reader's! If your mail is contating some attachments then you can use the simplest way to sending the mail with attachments.
Lets see the example below:-
$email = new PHPMailer();
$email->From = 'you@example.com';
$email->...
How to send and email without SMTP using PHP
Hello Reader's!
If you are new to php and need to send emails then PHP offers you many ways.
But you can use the PHP code below, It's simple and does not use yourSMTP.
Create a PHP page sentemail.php
<?php
if(isset($_POST['s...