Skip to main content

How to send Email Using PHP

Sending emails using php on your web-server is not such a big task if you are familiar with basic functions of PHP.

You can write a mail function and provide subject, message as parameter to it.
This mail function is inbuilt and your can use it by using the keyword  main() in your code.

How to use Mail() function in PHP?

Open your PHP file in any editor such as Notepad. If you dont have any existing PHP file, then create new PHP file and start writing the code given below one by one while understanding its use.

Mail to Variable:

$email="email_addressof_the_person_you_want_to_send_mail@domain.com";

The variable "$email" is used to store the address of the person who will recieve the email.

Subject Variable:

$subject="SUBJECT OF THE E-MAIL";

We will use this variable "$subject" to store the value for e-mail. Here I have given the value itself as "SUBJECT OF THE E-MAIL" for simplicity.

Message Variable:

$message="WRITE YOUR MESSAGE HERE";

"$message" variable would hold the value for the message of email. 

Mail Function Inplementation:

mail($email, $subject, $message, "From: <youremailid@domain.com>\r\n");

This is the main function used to send email. It contains 4 parameters here. Now, use these variables and functions in your php file and start sending e-mails from your own server or website.

Below is the complete look of the php sample page:

<?php

$email="receiver@gmail";
 
$subject="Mail function's testing";
 
$message="Testing of mail function on my server was successfull. Thanks";
 
mail($email, $subject, $message, "From: <youremailid@domain.com>\r\n");
 
echo "Mail Sent!";

?>

Try out the above sample script by replacing $email variable's value with your email address and check whether your have received the email or not. 

That's all. If you are getting any error in code above, feel free to comment below.

Comments

Popular posts from this blog

Cognizant Company Profile and it's information for Interview

Website: www.cognizant.com HQ Teaneck, NJ Industry Information Technology Services Size 130K+ Employees, $6B+ Revenue NASDAQ CTSH Competitors Infosys, Wipro, Tata Consultancy Services   About cognizant Cognizant Corporate view: Cognizant is an American multinational IT services and consulting corporation headquartered in Teaneck, New Jersey, United States. Cognizant has been named to the 2010 Fortune 100 Fastest-Growing Companies List for the eighth consecutive year. Cognizant has also been named to the Fortune 1000 and Forbes Global 2000 lists. It has consistently ranked among the fastest growing companies including the 2010 Business Week 50 list of the top-performing U.S. companies, the Business Week Hottest Tech Companies 2010, and the Forbes Fast Tech 2010 list of 25 Fastest Growing Technology Companies In America. Founded: 1994 Headquarters: Teaneck, New Jersey, U.S. Key people:  Francisco D'Souza (President & CEO) Lakshmi Naray...

CIVIL SERVICES' (I.A.S.) EXAMINATION

The Union Public Service Commission (U.P.S.C.)  conducts Civil Services' Examination once a year in two stages. The Preliminary Examination (Objective Type) for selection of candidates for the Main Examination is held in the month of May. The Civil Services Main Examination  is held in the months of October/November. Blank application forms and other particulars are published in the Employment News, generally in the month of December. The last date for the submission of applications to the Secretary, Union Public Service Commission, Dholpur House, Shahjahan Road, NewDelhi-11001 1 is usually the last week of January of the year of examination. The Combined Civil Services Examination is conducted for Recruitment to the following Services/Posts: 1. Indian Administrative Service. 2. Indian Foreign Service. 3. Indian Police Service. 4. Indian P & T Accounts & Finance Service, Group 'A'. 5. Indian Audit and Accounts Service, Group 'A'. 6. Indian Customs and Centr...

Infosys delays 17,000 campus recruitment offers

Bangalore: With a challenging environment, and low visibility into client spend, Infosys has said that it will be deferring joining dates, and the management is also putting some cost saving measures in place, reports Shreya Roy of CNBC-TV18. Infy had decided that with its current business needs in mind it will defer its campus recruitment process. The company had initially made 27,000 campus offers, but now the company says that 17,000 of these will be deferred by up to three months. However, the firm has reiterated that it plans to honour each of these offers in due course of time. In fact the company which prided itself on a six-month long extensive training programme for fresh intakes has also decided to cut the period short by two months, four months of this training programme will be conducted at its sprawling Mysore campus, while two months will be an online programme. With a challenging environment, and low visibility into client spend, Infy said it will delay...