Is there any way? Can i cheat and pass a string there?
The one line of code that i need help with is like this:
Code: Select all
function send_email($to,$subject,$content)
{
$headers = "From: <admin1@hotmail.com;admin2@hotmail.com>\n";Moderator: General Moderators
Code: Select all
function send_email($to,$subject,$content)
{
$headers = "From: <admin1@hotmail.com;admin2@hotmail.com>\n";Code: Select all
<?php
$headers = "From: admin1@hotmail.com, admin2@hotmail.com\r\n";
?>