Hier kann eine Notiz zum Merk-Eintrag hinzugefügt werden (optional)
empty($_POST['name']) OR
empty($_POST['betr']) OR
if ( empty($_POST['mail']) ) {
echo '<b>Bitte eine E-Mail eingeben</b><br>';
}
if ( empty($_POST['betr']) ) {
echo '<b>Bitte ein Betreff eingeben</b><br>';
}
icmail ($_POST['wer'],'Clan Kontakt',$_POST['txt']);
mail ($_POST['wer'],'Clan kontakt',$_POST['txt'],'From: '.$_POST['name'].' <'.$_POST['mail'].'>');
mail ($_POST['wer'],$_POST['betr'],$_POST['txt'],'From: '.$_POST['name'].' <'.$_POST['mail'].'>');
<tr>
<td class="Cmite">E-Mail</td>
<td class="Cnorm"><input type="text" name="mail"></td>
</tr>
<tr>
<td class="Cmite">Betreff</td>
<td class="Cnorm"><input type="text" name="betr"></td>
</tr>