please explain me mail function in php
Answers were Sorted based on User's Feedback
The PHP mail() Function:
The PHP mail() function is used to send emails from inside a
script.
Syntax
mail(to,subject,message,headers,parameters)
Parameter Description
to Required. Specifies the receiver / receivers of the email
subject Required. Specifies the subject of the email. Note:
This parameter cannot contain any newline characters
message Required. Defines the message to be sent. Each line
should be separated with a LF (\n). Lines should not exceed
70 characters
headers Optional. Specifies additional headers, like From,
Cc, and Bcc. The additional headers should be separated with
a CRLF (\r\n)
parameters Optional. Specifies an additional parameter to
the sendmail program
Note: For the mail functions to be available, PHP requires
an installed and working email system. The program to be
used is defined by the configuration settings in the php.ini
file. Read more in our PHP Mail reference.
PHP Simple E-Mail
The simplest way to send an email with PHP is to send a text
email.
In the example below we first declare the variables ($to,
$subject, $message, $from, $headers), then we use the
variables in the mail() function to send an e-mail:
<?php
$to = "someone@example.com";
$subject = "Test mail";
$message = "Hello! This is a simple email message.";
$from = "someonelse@example.com";
$headers = "From:" . $from;
mail($to,$subject,$message,$headers);
echo "Mail Sent.";
?>
| Is This Answer Correct ? | 8 Yes | 2 No |
Answer / amit kumar
it is done through a methode called mail() and it is declaired directly
| Is This Answer Correct ? | 0 Yes | 0 No |
What is php call function?
How to add different images in php program like a job site.......
How can we know the number of days between two given dates using PHP? How can we know the number of days between two given dates using MySQL?
How do I know my xampp version?
What is the use of htmlentities in php?
What is difference between rest and http?
how to upload more than 50 mb? i tried but session was expired....certain time .....i was set session duration three days .... how to rectified? if any one know that post ur answer as soon as possible?already i was increase php.ini but not working......
How can we define a variable accessible in functions of a php script?
Is nan in javascript?
Does wordpress run on php 7?
What is use of header() function in php? What the limitation of header()?
What does php mean?