<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link href="mmres://user_interface_reference.css" rel="stylesheet" type="text/css">
<title>CFMAIL</title>
</head>
<body bgcolor="#FFFFFF" text="#000000">
   <div id="説明">
   <table cellpadding="0" cellspacing="0" border="0" width="100%" class="main">
      <tr> 
         <td valign="top" class="name">CFMAIL</td>
         <td valign="top" nowrap class="compatibility">&nbsp;</td>
      </tr>
      <tr>
         <td colspan="2" class="divider"><img src="dwres:18084" width="100%" height="1"></td>
      </tr>


    </td>
  </tr>
  <tr>
    <td valign="top" colspan="2" class="description"><span class="title">説明</span>
<p>
SMTP サーバーを使用して、オプションでクエリー出力を含む電子メールメッセージを送信します。 
</p>
    </td>
  </tr>
  <tr>
    <td valign="top" colspan="2" class="CLEARSEPARATION">&nbsp;</td>
  </tr>
  <tr>
    <td valign="top" colspan="2" class="description"><span class="title">カテゴリ</span>
<p>
インターネットプロトコルタグ
</p>
  <tr>
    <td valign="top" colspan="2" class="CLEARSEPARATION">&nbsp;</td>
  </tr>
  <tr>
    <td valign="top" colspan="2" class="syntax"><span class="title">シンタックス</span><pre>&lt;cfmail
   to = &quot;recipient&quot;
   from = &quot;sender&quot;
   cc = &quot;copy_to&quot;
   bcc = &quot;blind_copy_to&quot;
   subject = &quot;msg_subject&quot;
   replyto = &quot;reply_to_addr&quot;
   failto = &quot;fail_message_addr&quot;
   username = &quot;user name&quot;
   password = &quot;password&quot;
   wraptext = &quot;column number&quot;
   charset = &quot;character encoding&quot;
   type = &quot;msg_type&quot;
   mimeattach = &quot;path&quot;
   query = &quot;query_name&quot;
   group = &quot;query_column&quot;
   groupcasesensitive = &quot;yes&quot;、&quot;no&quot;
   startrow = &quot;query_row&quot;
   maxrows = &quot;max_msgs&quot;
   server = &quot;serverspecs&quot;
   port = &quot;port_id&quot;
   mailerid = &quot;headerid&quot;
   timeout = &quot;seconds&quot;
   spoolenable = &quot;yes&quot;、&quot;no&quot;
   debug = &quot;yes&quot;、&quot;no&quot;&gt;

(オプション) メールメッセージの本文と cfhttpparam タグのいずれかまたは両方

&lt;/cfmail&gt;
</pre>    </td>
  </tr>
  <tr>
    <td valign="top" colspan="2" class="CLEARSEPARATION">&nbsp;</td>
  </tr>
  <tr>
    <td valign="top" colspan="2" class="description"><span class="title">関連項目</span>
<p>
cfmailparam、cfmailpart、 cfpop、cfftp、cfhttp、cfldap、Wrap、『ColdFusion MX 開発ガイド』の第39章の「電子メールの送受信」 の「ColdFusion とメールサーバーの併用」
</p>

<p>
ColdFusion MX&#160;6.1:
</p>
<ul>

<li>charset、failto、replyto、username、password、および wraptext の各属性が新たに追加されました。</li>

<li>server 属性で複数のメールサーバーを指定できるようになりました。</li>

<li>ColdFusion MX Administrator の [メール設定] ページにいくつかの設定オプションが追加されました。</li>
</ul>

<p>
ColdFusion&#160;MX: SpoolEnable 属性が追加されました。
</p>

<p>

</p>
    </td>
  </tr>
  <tr>
    <td valign="top" colspan="2" class="CLEARSEPARATION">&nbsp;</td>
  </tr>
  <tr>
    <td valign="top" colspan="2" class="description"><span class="title">使用方法</span>
<p>
指定したアドレスにメールメッセージを送信します。メールメッセージには、添付ファイルを含めることができます。タグ本文に CFML コードを入れて、メール出力を生成できます。cfmailparam タグと cfmailpart タグは、cfmail タグ本文内でのみ使用できます。 
</p>

<p>
メールメッセージは、シングルまたはマルチパートにできます。マルチパートのメールメッセージを送信する場合は、メッセージの内容をすべて cfmailpart タグ内に入れる必要があります。cfmailpart タグ内にないマルチパートのメッセージテキストは無視されます。
</p>
<table>
  <tr valign="top">
    <td width="30"><strong>メモ: </strong></td>
    <td>cfmail タグは、メールをディスクにスプールするときに添付ファイルのコピーを作成しません。スプール機能を有効にした添付ファイルのメッセージを送信するために cfmail タグを使用し、その添付ファイルを削除するために cffile タグを使用する場合、ファイルが削除された後でメール処理が実行される可能性があるため、メールが送信されないことがあります。この場合は、メールログに FileNotFound 例外が記録され、電子メールは送信されません。属性で SpoolEnable=&quot;No&quot; を設定するか、ColdFusion MX Administrator でスプール機能を無効にすると、この問題を防ぐことができます。スプール機能を無効にすると、電子メールは直ちに配達されるようになります。 </td>
  </tr>
</table>    </td>
  </tr>
  <tr>
    <td valign="top" colspan="2" class="CLEARSEPARATION">&nbsp;</td>
  </tr>
  <tr>
    <td valign="top" colspan="2" class="description"><span class="title">メールアドレスの指定</span>
<p>
メールアドレスは、次のどの形式でも指定できます。
</p>

<p>
</p><div align="left">
<table border="1">
  <caption></caption>
  <tr align="center">    <th><strong>形式</strong></th>
    <th><strong>例</strong></th>
</tr>
  <tr align="left">    <td>
<p>user@server</p></td>
    <td>
<p>rsmith@company.com</p></td>
</tr>
  <tr align="left">    <td>
<p>&lt;user@server&gt;</p></td>
    <td>
<p>&lt;rsmith@company.com&gt;</p></td>
</tr>
  <tr align="left">    <td>
<p>表示名 &lt;user@server&gt;</p></td>
    <td>
<p>Rob Smith &lt;rsmith@company.com&gt;</p></td>
</tr>
  <tr align="left">    <td>
<p>&quot;表示名&quot; &lt;user@server&gt;</p></td>
    <td>
<p>&quot;Rob Smith&quot; &lt;rsmith@company.com&gt;</p></td>
</tr>
  <tr align="left">    <td>
<p>user@server (表示名)</p></td>
    <td>
<p>rsmith@company.com (Rob Smith)</p></td>
</tr>
</table>
</div>
<p>
</p>
    </td>
  </tr>
  <tr>
    <td valign="top" colspan="2" class="CLEARSEPARATION">&nbsp;</td>
  </tr>
  <tr>
    <td valign="top" colspan="2" class="description"><span class="title">メールサーバーの指定</span>
<p>
server 属性では、複数のメールサーバーを指定できます。 
</p>
<table>
  <tr valign="top">
    <td width="30"><strong>メモ: </strong></td>
    <td>ColdFusion MX Standard で複数のメールサーバーを指定した場合、cfmail タグではその中の最初のサーバーのみが使用されます。メールログファイルに警告メッセージのログが記録され、残りのサーバーは無視されます。 </td>
  </tr>
</table>
<p>
サーバーごとに、オプションでユーザー名、パスワード、およびポートを指定できます。ここで設定する値は、対応する属性で設定した値よりも優先されます。server 属性は、次の形式で指定します。
</p>
<pre>[user:password@]server[:port],[user:password@]server[:port],....
</pre>
<p>
たとえば、次の行では、デフォルトのポートを使用し、ユーザーとパスワードを使用しない mail.myco.com というサーバーを指定しています。次に、ユーザー、パスワード、および特定のポートを使用する 2 番めのサーバーを指定しています。
</p>
<pre>server=mail.myco.com,mail_admin:adm2qzf@mail2.myco.com:24
</pre>
<p>
ColdFusion エンタープライズ版で複数のメールサーバーを指定すると、いずれかのサーバーに接続されるまで、指定した順序で利用可能なサーバーへの接続が試行されます。直前の 60 秒間利用できなかったサーバーには接続は試行されません。
</p>
    </td>
  </tr>
  <tr>
    <td valign="top" colspan="2" class="CLEARSEPARATION">&nbsp;</td>
  </tr>
  <tr>
    <td valign="top" colspan="2" class="description"><span class="title">例</span><pre>&lt;h3&gt;cfmail の例&lt;/h3&gt;

&lt;!--- この例を使用する場合、囲んでいるコメントは削除してください。

&lt;cfif IsDefined(&quot;form.mailto&quot;)&gt;
   &lt;cfif form.mailto is not &quot;&quot;
            AND form.mailfrom is not &quot;&quot;
            AND form.Subject is not &quot;&quot;&gt;
      &lt;cfmail to = &quot;#form.mailto#&quot;
          from = &quot;#form.mailFrom#&quot;
          subject = &quot;#form.subject#&quot;&gt;
            このメッセージは cfmail を使用して構築された自動メーラーによって送信されました。
            = = = = = = = = = = = = = = = = = = = = = = = = = = =
            #form.body#
      &lt;/cfmail&gt;   
      &lt;h3&gt;ありがとうございます。&lt;/h3&gt;
      &lt;p&gt;ありがとうございます。&lt;cfoutput&gt;#mailfrom#:ユーザーのメッセージ #subject# は
            #mailto#&lt;/cfoutput&gt; に送信されます。
   &lt;/cfif&gt;   
&lt;/cfif&gt;
&lt;p&gt;
&lt;form action = &quot;cfmail.cfm&quot;&gt;
   &lt;pre&gt;
   TO:       &lt;input type = &quot;Text&quot; name = &quot;MailTo&quot;&gt;
   FROM:&lt;input type = &quot;Text&quot; name = &quot;MailFrom&quot;&gt;
   件名 :    &lt;input type = &quot;Text&quot; name = &quot;Subject&quot;&gt;
   &lt;hr&gt;
   メッセージ本文 :
   &lt;textarea name =&quot;body&quot; cols=&quot;40&quot; rows=&quot;5&quot; wrap=&quot;virtual&quot;&gt;&lt;/textarea&gt;
   &lt;/pre&gt;
   &lt;!--- 必要なフィールドを作成します。 ---&gt;
   &lt;input type = &quot;hidden&quot; name = &quot;MailTo_required&quot; value = &quot;受信者名を入力します。&quot;&gt;
   &lt;input type = &quot;hidden&quot; name = &quot;MailFrom_required&quot; value = &quot;送信者名を入力します。&quot;&gt;
   &lt;input type = &quot;hidden&quot; name = &quot;Subject_required&quot; value = &quot;件名を入力します。&quot;&gt;
   &lt;input type = &quot;hidden&quot; name = &quot;Body_required&quot; value = &quot;テキストを入力します。&quot;&gt;
   &lt;p&gt;&lt;input type = &quot;Submit&quot; name = &quot;&quot;&gt;
&lt;/form&gt; 
---&gt;
</pre>
         </td>
      </tr>
   </table>
   </div>
<div id="TO">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>  
<td valign="top" class="name">TO</td>
  <td valign="top" nowrap class="compatibility">&nbsp;</td>
  </tr>
  <tr>
  <td colspan="2" class="divider"><img src="dwres:18084" width="100%" height="1"></td>
  </tr>

  <tr>
  <td valign="top" class="syntax">&nbsp;</td>
  <td valign="top" nowrap class="requirements">必須</td>
  </tr>
  <tr>
  <td colspan="2" class="clearseparation">&nbsp;</td>
  </tr>
  <tr>
  <td valign="top" colspan="2" class="description">



<p>メッセージ受信者の電子メールアドレスです。 </p><ul>

<li>スタティックなアドレス (例 : &quot;support@macromedia.com&quot;)。</li>

<li>アドレスが含まれている変数 (例 : &quot;#Form.Email#&quot;)。</li>

<li>アドレスが含まれているクエリー列の名前 (例 : &quot;#EMail#&quot;)。返される行ごとに電子メールメッセージが送信されます。</li>
</ul>


  </td>
  </tr>
  </table>
</div>
<div id="FROM">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>  
<td valign="top" class="name">FROM</td>
  <td valign="top" nowrap class="compatibility">&nbsp;</td>
  </tr>
  <tr>
  <td colspan="2" class="divider"><img src="dwres:18084" width="100%" height="1"></td>
  </tr>

  <tr>
  <td valign="top" class="syntax">&nbsp;</td>
  <td valign="top" nowrap class="requirements">必須</td>
  </tr>
  <tr>
  <td colspan="2" class="clearseparation">&nbsp;</td>
  </tr>
  <tr>
  <td valign="top" colspan="2" class="description">



<p>電子メールメッセージの送信者の名前です。</p><ul>

<li>スタティックな文字列 (例 : &quot;support@mex.com&quot;)。</li>

<li>変数 (例 : &quot;#GetUser.EMailAddress#&quot;)。</li>
</ul>

<p>この属性は、有効なインターネットアドレスでなくてもかまいません。任意のテキスト文字列を使用できます。</p>

  </td>
  </tr>
  </table>
</div>
<div id="CC">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>  
<td valign="top" class="name">CC</td>
  <td valign="top" nowrap class="compatibility">&nbsp;</td>
  </tr>
  <tr>
  <td colspan="2" class="divider"><img src="dwres:18084" width="100%" height="1"></td>
  </tr>

  <tr>
  <td valign="top" class="syntax">&nbsp;</td>
  <td valign="top" nowrap class="requirements">オプション</td>
  </tr>
  <tr>
  <td colspan="2" class="clearseparation">&nbsp;</td>
  </tr>
  <tr>
  <td valign="top" colspan="2" class="description">



<p>メッセージのコピー先のアドレスです。</p>

  </td>
  </tr>
  </table>
</div>
<div id="BCC">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>  
<td valign="top" class="name">BCC</td>
  <td valign="top" nowrap class="compatibility">&nbsp;</td>
  </tr>
  <tr>
  <td colspan="2" class="divider"><img src="dwres:18084" width="100%" height="1"></td>
  </tr>

  <tr>
  <td valign="top" class="syntax">&nbsp;</td>
  <td valign="top" nowrap class="requirements">オプション</td>
  </tr>
  <tr>
  <td colspan="2" class="clearseparation">&nbsp;</td>
  </tr>
  <tr>
  <td valign="top" colspan="2" class="description">



<p>メッセージのコピー先のアドレスです。メッセージのヘッダにはリストされません。 </p>

  </td>
  </tr>
  </table>
</div>
<div id="SUBJECT">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>  
<td valign="top" class="name">SUBJECT</td>
  <td valign="top" nowrap class="compatibility">&nbsp;</td>
  </tr>
  <tr>
  <td colspan="2" class="divider"><img src="dwres:18084" width="100%" height="1"></td>
  </tr>

  <tr>
  <td valign="top" class="syntax">&nbsp;</td>
  <td valign="top" nowrap class="requirements">必須</td>
  </tr>
  <tr>
  <td colspan="2" class="clearseparation">&nbsp;</td>
  </tr>
  <tr>
  <td valign="top" colspan="2" class="description">



<p>メッセージの表題です。ダイナミックに作成することができます。たとえば、顧客に最新情報を通知するメッセージを送信するには、&quot;注文番号 #Order_ID# のステータス&quot; などを指定します。 </p>

  </td>
  </tr>
  </table>
</div>
<div id="REPLYTO">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>  
<td valign="top" class="name">REPLYTO</td>
  <td valign="top" nowrap class="compatibility">&nbsp;</td>
  </tr>
  <tr>
  <td colspan="2" class="divider"><img src="dwres:18084" width="100%" height="1"></td>
  </tr>

  <tr>
  <td valign="top" class="syntax">&nbsp;</td>
  <td valign="top" nowrap class="requirements">オプション</td>
  </tr>
  <tr>
  <td colspan="2" class="clearseparation">&nbsp;</td>
  </tr>
  <tr>
  <td valign="top" colspan="2" class="description">



<p>受信者が返信するときに宛先として使用するアドレスです。</p>

  </td>
  </tr>
  </table>
</div>
<div id="FAILTO">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>  
<td valign="top" class="name">FAILTO</td>
  <td valign="top" nowrap class="compatibility">&nbsp;</td>
  </tr>
  <tr>
  <td colspan="2" class="divider"><img src="dwres:18084" width="100%" height="1"></td>
  </tr>

  <tr>
  <td valign="top" class="syntax">&nbsp;</td>
  <td valign="top" nowrap class="requirements">オプション</td>
  </tr>
  <tr>
  <td colspan="2" class="clearseparation">&nbsp;</td>
  </tr>
  <tr>
  <td valign="top" colspan="2" class="description">



<p>メールシステムから配達失敗の通知が送信されるアドレスです。メールエンベロープの逆順パスの値を設定します。</p>

  </td>
  </tr>
  </table>
</div>
<div id="USERNAME">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>  
<td valign="top" class="name">USERNAME</td>
  <td valign="top" nowrap class="compatibility">&nbsp;</td>
  </tr>
  <tr>
  <td colspan="2" class="divider"><img src="dwres:18084" width="100%" height="1"></td>
  </tr>

  <tr>
  <td valign="top" class="syntax">&nbsp;</td>
  <td valign="top" nowrap class="requirements">オプション</td>
  </tr>
  <tr>
  <td colspan="2" class="clearseparation">&nbsp;</td>
  </tr>
  <tr>
  <td valign="top" colspan="2" class="description">



<p>認証を要求する SMTP サーバーに送信するユーザー名です。password 属性が必要です。</p>

  </td>
  </tr>
  </table>
</div>
<div id="PASSWORD">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>  
<td valign="top" class="name">PASSWORD</td>
  <td valign="top" nowrap class="compatibility">&nbsp;</td>
  </tr>
  <tr>
  <td colspan="2" class="divider"><img src="dwres:18084" width="100%" height="1"></td>
  </tr>

  <tr>
  <td valign="top" class="syntax">&nbsp;</td>
  <td valign="top" nowrap class="requirements">オプション</td>
  </tr>
  <tr>
  <td colspan="2" class="clearseparation">&nbsp;</td>
  </tr>
  <tr>
  <td valign="top" colspan="2" class="description">



<p>認証を要求する SMTP サーバーに送信するパスワードです。username 属性が必要です。</p>

  </td>
  </tr>
  </table>
</div>
<div id="WRAPTEXT">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>  
<td valign="top" class="name">WRAPTEXT</td>
  <td valign="top" nowrap class="compatibility">&nbsp;</td>
  </tr>
  <tr>
  <td colspan="2" class="divider"><img src="dwres:18084" width="100%" height="1"></td>
  </tr>

  <tr>
  <td valign="top" class="syntax">&nbsp;</td>
  <td valign="top" nowrap class="requirements">オプション</td>
  </tr>
  <tr>
  <td colspan="2" class="clearseparation">&nbsp;</td>
  </tr>
  <tr>
  <td valign="top" colspan="2" class="description">

<strong>Default value:</strong> "テキストをラップしない"


<p>メールテキストの最大行を文字数で指定します。指定した文字数よりも行が長い場合は、指定した位置の直前の空白文字 (タブやスペースなど) が改行に置き換わります。行に空白文字がない場合は、指定した位置に改行が挿入されます。この属性の一般的な値は 72 です。</p>

  </td>
  </tr>
  </table>
</div>
<div id="CHARSET">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>  
<td valign="top" class="name">CHARSET</td>
  <td valign="top" nowrap class="compatibility">&nbsp;</td>
  </tr>
  <tr>
  <td colspan="2" class="divider"><img src="dwres:18084" width="100%" height="1"></td>
  </tr>

  <tr>
  <td valign="top" class="syntax">&nbsp;</td>
  <td valign="top" nowrap class="requirements">オプション</td>
  </tr>
  <tr>
  <td colspan="2" class="clearseparation">&nbsp;</td>
  </tr>
  <tr>
  <td valign="top" colspan="2" class="description">

<strong>Default value:</strong> "ColdFusion MX Administrator の [メール] ページで選択した文字エンコード。デフォルトは UTF-8 です。"


<p>ヘッダを含むメールメッセージの文字エンコードです。一般的に使用される値を次に示します。</p><ul>

<li>utf-8</li>

<li>iso-8859-1</li>

<li>windows-1252</li>

<li>us-ascii</li>

<li>shift_jis</li>

<li>iso-2022-jp</li>

<li>euc-jp</li>

<li>euc-kr</li>

<li>iso-2022-kr</li>

<li>big5</li>

<li>hz-gb-2312</li>

<li>euc-cn</li>

<li>utf-16</li>
</ul>

<p>文字エンコードの詳細については、www.w3.org/International/O-charset.html</a> を参照してください。</p>

  </td>
  </tr>
  </table>
</div>
<div id="TYPE">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>  
<td valign="top" class="name">TYPE</td>
  <td valign="top" nowrap class="compatibility">&nbsp;</td>
  </tr>
  <tr>
  <td colspan="2" class="divider"><img src="dwres:18084" width="100%" height="1"></td>
  </tr>

  <tr>
  <td valign="top" class="syntax">&nbsp;</td>
  <td valign="top" nowrap class="requirements">オプション</td>
  </tr>
  <tr>
  <td colspan="2" class="clearseparation">&nbsp;</td>
  </tr>
  <tr>
  <td valign="top" colspan="2" class="description">

<strong>Default value:</strong> "text/plain"


<p>メッセージの MIME タイプです。有効な MIME メディアタイプまたは次のいずれかの値を指定できます。</p><ul>

<li>text:&#160;text/plain タイプを指定します。</li>

<li>plain:&#160;text/plain タイプを指定します。</li>

<li>html:&#160;text/html タイプを指定します。</li>
</ul>

<p>登録されているすべての MIME メディアタイプのリストについては、www.iana.org/assignments/media-types/</a> を参照してください。</p>

  </td>
  </tr>
  </table>
</div>
<div id="MIMEATTACH">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>  
<td valign="top" class="name">MIMEATTACH</td>
  <td valign="top" nowrap class="compatibility">&nbsp;</td>
  </tr>
  <tr>
  <td colspan="2" class="divider"><img src="dwres:18084" width="100%" height="1"></td>
  </tr>

  <tr>
  <td valign="top" class="syntax">&nbsp;</td>
  <td valign="top" nowrap class="requirements">オプション</td>
  </tr>
  <tr>
  <td colspan="2" class="clearseparation">&nbsp;</td>
  </tr>
  <tr>
  <td valign="top" colspan="2" class="description">



<p>メッセージに添付するファイルのパスです。添付ファイルは、MIME 形式でエンコードされます。ファイルの MIME タイプは ColdFusion によって判断されます。添付ファイルを送信して MIME タイプを指定するには、cfmailparam タグを使用します。</p>

  </td>
  </tr>
  </table>
</div>
<div id="QUERY">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>  
<td valign="top" class="name">QUERY</td>
  <td valign="top" nowrap class="compatibility">&nbsp;</td>
  </tr>
  <tr>
  <td colspan="2" class="divider"><img src="dwres:18084" width="100%" height="1"></td>
  </tr>

  <tr>
  <td valign="top" class="syntax">&nbsp;</td>
  <td valign="top" nowrap class="requirements">オプション</td>
  </tr>
  <tr>
  <td colspan="2" class="clearseparation">&nbsp;</td>
  </tr>
  <tr>
  <td valign="top" colspan="2" class="description">



<p>メッセージのデータを取り出す cfquery の名前です。複数のメッセージを送信する場合や、メッセージ内でクエリー結果を送信する場合は、この属性を使用します。</p>

  </td>
  </tr>
  </table>
</div>
<div id="GROUP">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>  
<td valign="top" class="name">GROUP</td>
  <td valign="top" nowrap class="compatibility">&nbsp;</td>
  </tr>
  <tr>
  <td colspan="2" class="divider"><img src="dwres:18084" width="100%" height="1"></td>
  </tr>

  <tr>
  <td valign="top" class="syntax">&nbsp;</td>
  <td valign="top" nowrap class="requirements">オプション</td>
  </tr>
  <tr>
  <td colspan="2" class="clearseparation">&nbsp;</td>
  </tr>
  <tr>
  <td valign="top" colspan="2" class="description">

<strong>Default value:</strong> "CurrentRow"


<p>レコードのセットをグループ化して、1 つのメッセージとして送信する場合に使用するクエリー列です。たとえば、顧客に 1 セットの請求書を送信する場合、&quot;Customer_ID&quot; でグループ化します。大文字と小文字は区別されます。指定したフィールドでデータをソートする場合、隣り合う重複データは削除されます。</p>

  </td>
  </tr>
  </table>
</div>
<div id="GROUPCASE<BR>SENSITIVE">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>  
<td valign="top" class="name">GROUPCASE<BR>SENSITIVE</td>
  <td valign="top" nowrap class="compatibility">&nbsp;</td>
  </tr>
  <tr>
  <td colspan="2" class="divider"><img src="dwres:18084" width="100%" height="1"></td>
  </tr>

  <tr>
  <td valign="top" class="syntax">&nbsp;</td>
  <td valign="top" nowrap class="requirements">オプション</td>
  </tr>
  <tr>
  <td colspan="2" class="clearseparation">&nbsp;</td>
  </tr>
  <tr>
  <td valign="top" colspan="2" class="description">

<strong>Default value:</strong> "No"


<p>ブール値です。group 属性を使用するときに、大文字と小文字を区別するかどうかを指定します。大文字と小文字の区別があるレコードをグループ化する場合は、この属性を Yes に設定します。</p>

  </td>
  </tr>
  </table>
</div>
<div id="STARTROW">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>  
<td valign="top" class="name">STARTROW</td>
  <td valign="top" nowrap class="compatibility">&nbsp;</td>
  </tr>
  <tr>
  <td colspan="2" class="divider"><img src="dwres:18084" width="100%" height="1"></td>
  </tr>

  <tr>
  <td valign="top" class="syntax">&nbsp;</td>
  <td valign="top" nowrap class="requirements">オプション</td>
  </tr>
  <tr>
  <td colspan="2" class="clearseparation">&nbsp;</td>
  </tr>
  <tr>
  <td valign="top" colspan="2" class="description">

<strong>Default value:</strong> "1"


<p>処理を開始するクエリー内の行です。</p>

  </td>
  </tr>
  </table>
</div>
<div id="MAXROWS">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>  
<td valign="top" class="name">MAXROWS</td>
  <td valign="top" nowrap class="compatibility">&nbsp;</td>
  </tr>
  <tr>
  <td colspan="2" class="divider"><img src="dwres:18084" width="100%" height="1"></td>
  </tr>

  <tr>
  <td valign="top" class="syntax">&nbsp;</td>
  <td valign="top" nowrap class="requirements">オプション</td>
  </tr>
  <tr>
  <td colspan="2" class="clearseparation">&nbsp;</td>
  </tr>
  <tr>
  <td valign="top" colspan="2" class="description">



<p>クエリーをループするときに送信するメッセージの最大数です。</p>

  </td>
  </tr>
  </table>
</div>
<div id="SERVER">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>  
<td valign="top" class="name">SERVER</td>
  <td valign="top" nowrap class="compatibility">&nbsp;</td>
  </tr>
  <tr>
  <td colspan="2" class="divider"><img src="dwres:18084" width="100%" height="1"></td>
  </tr>

  <tr>
  <td valign="top" class="syntax">&nbsp;</td>
  <td valign="top" nowrap class="requirements">オプション</td>
  </tr>
  <tr>
  <td colspan="2" class="clearseparation">&nbsp;</td>
  </tr>
  <tr>
  <td valign="top" colspan="2" class="description">



<p>メッセージの送信に使用する SMTP サーバーアドレス、または (エンタープライズ版のみ) サーバーアドレスのカンマ区切りのリストです。ここか ColdFusion MX Administrator で、少なくとも 1 つのサーバーを指定する必要があります。ここで設定する値は、Administrator で設定する値よりも優先されます。ポートの指定を含む値は、port 属性で設定する値よりも優先されます。詳細については、「使用方法」を参照してください。</p>

  </td>
  </tr>
  </table>
</div>
<div id="PORT">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>  
<td valign="top" class="name">PORT</td>
  <td valign="top" nowrap class="compatibility">&nbsp;</td>
  </tr>
  <tr>
  <td colspan="2" class="divider"><img src="dwres:18084" width="100%" height="1"></td>
  </tr>

  <tr>
  <td valign="top" class="syntax">&nbsp;</td>
  <td valign="top" nowrap class="requirements">オプション</td>
  </tr>
  <tr>
  <td colspan="2" class="clearseparation">&nbsp;</td>
  </tr>
  <tr>
  <td valign="top" colspan="2" class="description">



<p>SMTP サーバーがリクエストをリスンする TCP/IP ポートです (通常は 25)。ここで設定する値は、Administrator で設定する値よりも優先されます。</p>

  </td>
  </tr>
  </table>
</div>
<div id="MAILERID">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>  
<td valign="top" class="name">MAILERID</td>
  <td valign="top" nowrap class="compatibility">&nbsp;</td>
  </tr>
  <tr>
  <td colspan="2" class="divider"><img src="dwres:18084" width="100%" height="1"></td>
  </tr>

  <tr>
  <td valign="top" class="syntax">&nbsp;</td>
  <td valign="top" nowrap class="requirements">オプション</td>
  </tr>
  <tr>
  <td colspan="2" class="clearseparation">&nbsp;</td>
  </tr>
  <tr>
  <td valign="top" colspan="2" class="description">

<strong>Default value:</strong> "ColdFusion MX アプリケーションサーバー"


<p>X-Mailer SMTP ヘッダに渡されるメーラー ID です。この ID によって、メーラーのアプリケーションが識別されます。</p>

  </td>
  </tr>
  </table>
</div>
<div id="TIMEOUT">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>  
<td valign="top" class="name">TIMEOUT</td>
  <td valign="top" nowrap class="compatibility">&nbsp;</td>
  </tr>
  <tr>
  <td colspan="2" class="divider"><img src="dwres:18084" width="100%" height="1"></td>
  </tr>

  <tr>
  <td valign="top" class="syntax">&nbsp;</td>
  <td valign="top" nowrap class="requirements">オプション</td>
  </tr>
  <tr>
  <td colspan="2" class="clearseparation">&nbsp;</td>
  </tr>
  <tr>
  <td valign="top" colspan="2" class="description">



<p>SMTP サーバーへの接続がタイムアウトになるまで待機する秒数です。ここで設定する値は、Administrator で設定する値よりも優先されます。</p>

  </td>
  </tr>
  </table>
</div>
<div id="SPOOLENABLE">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>  
<td valign="top" class="name">SPOOLENABLE</td>
  <td valign="top" nowrap class="compatibility">&nbsp;</td>
  </tr>
  <tr>
  <td colspan="2" class="divider"><img src="dwres:18084" width="100%" height="1"></td>
  </tr>

  <tr>
  <td valign="top" class="syntax">&nbsp;</td>
  <td valign="top" nowrap class="requirements">オプション</td>
  </tr>
  <tr>
  <td colspan="2" class="clearseparation">&nbsp;</td>
  </tr>
  <tr>
  <td valign="top" colspan="2" class="description">



<p>メールをスプールするか、常にメールを直ちに送信するかを指定します。ColdFusion MX Administrator の [配達されるメールメッセージをスプール] で設定する値よりも優先されます。</p><ul>

<li>Yes: 送信オペレーションが終了するまで、メッセージのコピーを保存します。ページでこのオプションを使用すると、No オプションを使用するページよりも処理が遅くなることがあります。</li>

<li>No: 送信オペレーションが終了するまでコピーを保管せずに、メッセージを送信キューに挿入します。このオプションを No に設定したときに配達エラーが発生すると、アプリケーション例外が発生し、mail.log ファイルにエラーのログが記録されます。</li>
</ul>


  </td>
  </tr>
  </table>
</div>
<div id="DEBUG">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>  
<td valign="top" class="name">DEBUG</td>
  <td valign="top" nowrap class="compatibility">&nbsp;</td>
  </tr>
  <tr>
  <td colspan="2" class="divider"><img src="dwres:18084" width="100%" height="1"></td>
  </tr>

  <tr>
  <td valign="top" class="syntax">&nbsp;</td>
  <td valign="top" nowrap class="requirements">オプション</td>
  </tr>
  <tr>
  <td colspan="2" class="clearseparation">&nbsp;</td>
  </tr>
  <tr>
  <td valign="top" colspan="2" class="description">

<strong>Default value:</strong> "No"

<ul>

<li>Yes: デバッグ出力を標準出力に送信します。デフォルトでは、コンソールウィンドウを使用できない場合、ColdFusion は出力をサーバー設定内の cf_rootruntimelogscoldfusion-out.log に送信します。J2EE 設定と JRun を使用する場合、デフォルトの場所は jrun_home/logs/servername-out.log です。<br>注意 : このオプションを Yes に設定した場合、ColdFusion MX は、すべてのメッセージの内容などの詳細なデバッグ情報をログに書き込み、大容量のログをすばやく生成できます。</li>

<li>No: デバッグ出力を生成しません。</li>
</ul>


  </td>
  </tr>
  </table>
</div>

  </body>
</html>
