PHP でメールを送信する必要があり、次のようなメール関数を使用します。
$subject = "test";
$message = "Large message";
$headers = "Content-type: text/html; charset=iso-8859-1; \n".
mail('someone@example.com', $subject, $message, $headers);
$message が大きい場合、このコードは機能しません (件名のみになります)。そして、次のようなコードを書くと機能します。
$subject = "test";
$headers = "Content-type: text/html; charset=iso-8859-1; \n".
mail('someone@example.com', $subject, "large message", $headers);
それを手伝ってください。