Webiter
12-22-2011, 09:49 PM
Getting stuck with this email trial.
This test position (http://www.scriptest.webitry.net) has a old eCard script. All works fine except for the test emails that I am sending to my own email address. The test mails and the cards are not being delivered.
This is the send function
function send_ecard() {
document.ecard_form.action = "<?php echo $HTTP_SERVER_VARS["PHP_SELF"] ?>";
document.ecard_form.target = "_self";
document.ecard_form["submit_action"].value = "send";
if (check()) { document.ecard_form.submit(); }
}
I have also tried
"<?php echo $_SERVER["PHP_SELF"] ?>"; but still do not get delivery of mail!
Just seeking to ensure that I am inputting correctly at the Form Action
<FORM NAME="ecard_form" ACTION="#" METHOD="post">
as I think this could be causing the problem of the non delivery. Is this likely to be the case?
This test position (http://www.scriptest.webitry.net) has a old eCard script. All works fine except for the test emails that I am sending to my own email address. The test mails and the cards are not being delivered.
This is the send function
function send_ecard() {
document.ecard_form.action = "<?php echo $HTTP_SERVER_VARS["PHP_SELF"] ?>";
document.ecard_form.target = "_self";
document.ecard_form["submit_action"].value = "send";
if (check()) { document.ecard_form.submit(); }
}
I have also tried
"<?php echo $_SERVER["PHP_SELF"] ?>"; but still do not get delivery of mail!
Just seeking to ensure that I am inputting correctly at the Form Action
<FORM NAME="ecard_form" ACTION="#" METHOD="post">
as I think this could be causing the problem of the non delivery. Is this likely to be the case?