Hi,
in my site error log, I’m getting a PHP notice on sent-mail.php as Undefined index.
I thing it is because of line no 77. At line no 23 you mentioned the variable $message and then on line no 77 you are re assigning $message to $body. But you have use 2 extra quotes without any reason at line no 77.
You did this –
$body = “$message”;
It should be –
$body = $message; //without the quotes
PHP will automatically does the implicit conversion if needed. I think this is the origin or the error on the error log.
ok I’ll try changing the code and see if that remove the notice. If it remove the notice, I will let you know so that you can make the changes in the next update. I know its juusta notice, but still it is gonna populate my error_log which is very annoying.
Anyways i’ll let u know if that thing fix the issue.