hi
i am using php email function .in from address i am getting my ftp email id
eg username:form,my mail id is as form@connect.com but i want to give my own address...dynamically what i give.

$body1="<html><head></head><body>";
$body1.="<table width='850px' border='0' align='center' cellpadding='0' cellspacing='0' style='vertical-align:top;'>";
$body1.="<tr><td><p>If you have net banking facility you can do an online transfer of just Rs.500 to the account "; 
$body1.="</body></html>";
$headers = "MIME-Version: 1.0\r\n";
$headers .= "Content-Type: text/html; charset=iso-8859-1" . "\r\n";
if (strlen($body2)>998) {
$headers .= "Content-Transfer-Encoding: base64;" . "\r\n";
$headers .= 'From: ' . $em . "\r\n" .'X-Mailer: PHP/' . phpversion();
}

Recommended Answers

All 2 Replies

hi
can anybody help in email.i want how to give from address.
eg
$from="l.w@gmail.com"
but in my mail i am getting from addr as
l.w@bluehost.com
bluehost is my server name
please tell me how to avoid this

Try this and see if it helps:

<?php
$headers = 'From: form@connect.com' . "\r\n" .
    'Reply-To: form@connect.com' . "\r\n" .
    'X-Mailer: PHP/' . phpversion();

mail($to, $subject, $message, $headers);
?>

You can also visit http://th2.php.net/function.mail to find out more information.

You supposed to have posted the full code of the script that was giving the error, so that the community wouldn't have to guess. Doing that would most likely bring more response.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.