hi to all
i am unable to send email using header. i used code
using above code value of $from is not show may be because of symbols of "<" and ">" and thats why mail is not sent
then i used code
by using above code value of variable $from is got but still unable to send email.
please give me some solution
i am unable to send email using header. i used code
Code:
$from = $row['mail_from']; $subject = $row['subject']; $head = $row['header']; $Mail_header = "Content-type: text/html\n"; $Mail_header .= "From: $head <$from> \n"; $msg = $ro['message'];
then i used code
Code:
$from = $row['mail_from']; $subject = $row['subject']; $head = $row['header']; $Mail_header = "Content-type: text/html\n"; $Mail_header .= "From: $head <$from> \n"; $msg = $ro['message'];
please give me some solution
Comment