私は自分の連絡先フォームを作成しましたが、誰かが私にメッセージを送ったときに下の画像のような形式なしで来ることを除いて、うまく機能しています:
これは私が使用する私の.phpコードです:
$formdata = array (
'name' => $name,
'city' => $city,
'message' => $message
);
if ( !( $formerrors ) ) :
$to = "me@sipledomain.com";// input my name address to get mail to
$subject = "From $name";
$message = json_encode($formdata);
if ( mail( $to, $subject, $message ) ):
$msg = "Thanks for filling out the form, i will contact you soon";
else:
$msg = "Problem sending the message";
endif; // mail form data
endif; // check for form errors
endif; //form submitted
前もって感謝します