$(function() {
    $("#mailform").find("#sendmail").live("click", function(e) {
        sendmail();
    });
});


var sendmail = function() {
    $("#mailform").find(".mailmsg").html('送信中．．．');
    $("#mailform").find(".mailmsg").append('<img src=\"img/ajax-loader.gif\" />');

    var postdata = {
        name: $("#mailform").find("input[name='name']").val(),
        email: $("#mailform").find("input[name='email']").val(),
        subject: $("#mailform").find("input[name='subject']").val(),
        body: $("#mailform").find("textarea[name='body']").val()
    };
    //console.log(postdata);
    
    var url = 'http://www.torikago.com/mail/sendmail2.php';
    $.ajax({
        type: 'POST',
        url: url,
        data: postdata,
        dataType: 'text',
        success: function(resp) {
            //console.log(resp);
            if (resp != "ok") {
                alert(resp);
                $('#mailform').find(".mailmsg").html("");
                return false;
            }
            $('#mailform').find(".mailmsg").html("メール送信完了");
            alert("メール送信完了");
            mailform();
        },
        error: function(XMLHttpRequest, textStatus, errorThrown) {
            //console.log('メール送信APIアクセスエラー：' + textStatus);
            alert("メール送信に失敗しました。\nしばらく待って再度やり直してください。");
            $('#mailform').find(".mailmsg").html("");
        }
    });
};
