monchichi
Power Member
- Jun 3, 2011
- 626
- 265
funny thing. I created a new file calles sendmail2.php instead of sendmail.php and now it is sending.
what a joke. same content in the file !
it is sending whola data BUT not this:
all the other fields are included in the email. funny thing is first it send those fields aswell but not the name field.. now it is not sending this. omg. makes no sense
what a joke. same content in the file !
it is sending whola data BUT not this:
Code:
if(isset($_POST['express_suchbegriff-1'])){
$email_content .= 'Ihre wichtigsten Suchbegriffe 1: ' . $_POST['express_suchbegriff-1']."\n";
}
if(isset($_POST['express_suchbegriff-2'])){
$email_content .= 'Ihre wichtigsten Suchbegriffe 2: ' . $_POST['express_suchbegriff-2']."\n";
}
if(isset($_POST['express_suchbegriff-3'])){
$email_content .= 'Ihre wichtigsten Suchbegriffe 3: ' . $_POST['express_suchbegriff-3']."\n";
}
if(isset($_POST['express_suchbegriff-4'])){
$email_content .= 'Ihre wichtigsten Suchbegriffe 4: ' . $_POST['express_suchbegriff-4']."\n";
}
if(isset($_POST['express_suchbegriff-5'])){
$email_content .= 'Ihre wichtigsten Suchbegriffe 5: ' . $_POST['express_suchbegriff-5']."\n";
}
if(isset($_POST['express_suchbegriff-6'])){
$email_content .= 'Ihre wichtigsten Suchbegriffe 6: ' . $_POST['express_suchbegriff-6']."\n";
}
if(isset($_POST['express_suchbegriff-7'])){
$email_content .= 'Ihre wichtigsten Suchbegriffe 7: ' . $_POST['express_suchbegriff-7']."\n";
}
all the other fields are included in the email. funny thing is first it send those fields aswell but not the name field.. now it is not sending this. omg. makes no sense