2

<cfmail>お問い合わせの静的ページから送信しようとしています。受信者は 1 人で、バックエンドに保存したくありません。

<cfcase value="contact">
        <cfset caller.mainTitle = "Contact Us">

        <div id="contact_form">
            <cfform method="post" action="contact2" id="usrform">
                First Name<br>
                <input class="textbox" type="text" name="firstName" value="First Name" onfocus="if (this.value=='First Name') this.value='';">
                    <br>
                Last Name<br>
                <input class="textbox" type="text" name="lastName" value="Last Name" onfocus="if(this.value=='Last Name') this.value ='';">
                    <br>
                Email<br>
                <input class="textbox" type="text" name="email" value="Email" onfocus="if(this.value=='Email') this.value='';">
                    <br>
                Phone Number<br>
                <input class="textbox" type="text" name="phone" value="Phone Number" onfocus="if(this.value =='Phone Number') this.value='';">
                    <br>

                <input type="submit" class='submitBtn'>
            </cfform>
            <br>
        </div>
        <div class="commentsTop">
            <p style="color:black; font-size:18px; text-align:left;">We would love to hear from you!<p><br>
            <textarea class="comments" rows="10" cols="100" name="comment" form="usrform" onfocus="if(this.value=='Enter your message here...') this.value='';">Enter your message here...</textarea>
        </div>


    </cfcase>
  <cfcase value="contact2">

        <cfmail to="test@test.com" from="tester@test.com" Subject="Message From Contact Us" type="HTML">


</cfmail>

</cfcase>

メールの本文として添付したいフォームがあります。フォームを として持つ必要があるのか​​ 、<cfform>それとも問題ではないのかわかりませんでした。

4

2 に答える 2

0

ワンファイルソリューション

<form method="post" action="?">
    First Name<br>
    <input class="textbox" type="text" name="firstName" value="First Name" onfocus="if (this.value=='First Name') this.value='';">
    <br>
    Last Name<br>
    <input class="textbox" type="text" name="lastName" value="Last Name" onfocus="if(this.value=='Last Name') this.value ='';">
    <br>
    Email<br>
    <input class="textbox" type="text" name="email" value="Email" onfocus="if(this.value=='Email') this.value='';">
    <br>
    Phone Number<br>
    <input class="textbox" type="text" name="phone" value="Phone Number" onfocus="if(this.value =='Phone Number') this.value='';">
    <br>


    <p style="color:black; font-size:18px; text-align:left;">We would love to hear from you!<p><br>
        <textarea class="comments" rows="10" cols="100" name="comment"  onfocus="if(this.value=='Enter your message here...') this.value='';">Enter your message here...</textarea>

    <input type="submit" class='submitBtn'>
</form>


<cfif cgi.request_method EQ "post"> 

  <cfmail to="test@test.com" from="tester@test.com" Subject="Message From Contact Us" type="HTML">

    <!--- Your message body (you can use your form variable here) --->
    <cfloop index="i" list="#Form.FieldNames#" delimiters=",">
      #i# = #Form[i]#<br>
    </cfloop>
 </cfmail>

</cfif>

注: コメント フィールドはフォーム内にありませんでした

以下も参照してください。

CFLoopアイテムをフォームから順に表示

于 2016-02-09T23:35:27.723 に答える