
Search In
Email Set Up in Drupal 8 - SMTP module installation & Configuration steps:
Sending email is one the most basic and essential requirement for each website. In drupal also we require to send emails on occurrence of different events e.g. on registr
It is very important to validate the email while validating an HTML form. An email is taken as a string which is separated into two parts by the @ symbol.
1. user_info
2. a domain
i.e., user_info@domain.
The length of the user_info part may be up
Hi Reader's,
Welcome to FindNerd, today we are going to discuss on how to send SMTP mail from GoDaddy server in PHP.
If you are developing any web application in PHP then, sometimes you are required to send emails in your PHP application.
You c
In SQL while storing or retrieving passwords we need to ensure that it should be in encrypted format.
So for doing that we first need to store it in encrypted form
CREATE PROC [dbo].[uspRegisterUser]
@FirstName VARCHAR(50),
@LastNam
Forget Password function use in cakePhp for making it secure by sending the code to the database in encrypted form, and fetch the value from by using find keyword in the list, this will give you detail on the bases of email id.
Forexample: A us
Hi Reader's,
Welcome to FindNerd, today we are going to discuss how to send email in PHP.
In web applications sending email is a very important feature.
PHP provides a built-in mail() function for creating and sending emails to one or mo
Data validation plays an important role in any application, It helps to confirm that the data in a Model confirms to all the rules of any application.
There are 2 types of validation in cakephp. First one is server side and the next is
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 it.
Hello Reader's!,If you want to add forgot password field in your login page and send the forgot password link through mail Then I wrote this blog for you.
// first create a forgot password link in your login page and allow forgot password page a
Sometimes we are required to send mails in our cakephp application.
To setup in cakephp lets follow these steps :
1. In your EmailConfig class at /app/Config/email.php set the email configuration. Use this class to configure email
