<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>CFMAILPART </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">CFMAILPART </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>
マルチパートメールメッセージの 1 つのパートを指定します。cfmail タグ内でのみ使用できます。cfmail タグ内では、複数の cfmailpart タグを使用できます。
</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
   ... &gt;
   (オプションの cfmailparam のエントリ)
   &lt;cfmailpart 
      type=&quot;mime type&quot;
      charset=&quot;character encoding&quot;
      wraptext=&quot;number&quot;
   &gt;
   メールのパートの内容
&lt;/cfmailpart&gt;
   ...
&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>
ColdFusion MX&#160;6.1: このタグが追加されました。
</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>
cfmail、cfmailparam、cfpop、cfftp、cfhttp、cfldap、cfcontent、Wrap、『ColdFusion MX 開発ガイド』の第17章の「グローバル化アプリケーションの開発」 の「電子メール」
</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>
このタグは、メールメッセージと、その内容を複数の形式で複製した代替版のメッセージを作成するために使用します。最も一般的な使い方は、どのメールリーダーでも読み取れるプレーンテキストのメッセージの後ろに、HTML 互換のメールリーダーで表示できる HTML 形式のメッセージを付けて送信することです。最も単純な形式のメッセージを最初に指定し、より複雑な形式のメッセージを後から指定します。詳細については、www.ietf.org/rfc/rfc2046.txt</a> を参照してください。
</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;cfmailpart の例&lt;/h3&gt;
&lt;cfmail from = &quot;peter@domain.com&quot; To = &quot;paul@domain.com&quot;
Subject = &quot;どちらの形式で表示されていますか?&quot;&gt;
   &lt;cfmailpart 
      type=&quot;text&quot;
      wraptext=&quot;74&quot;&gt;
         お使いのメールリーダーが HTML テキストに対応していないため、
         このメッセージはプレーンテキストで表示されています。
   &lt;/cfmailpart&gt;&gt;
   &lt;cfmailpart 
      type=&quot;html&quot;&gt;
         &lt;h3&gt;HTML メールメッセージ&lt;/h3&gt;
         &lt;p&gt;このメッセージは &lt;strong&gt;HTML&lt;/strong&gt; で表示されています。&lt;/p&gt;
         &lt;p&gt;お使いのメールリーダーは HTML テキストに対応しています。&lt;/p&gt;
   &lt;/cfmailpart&gt;
&lt;/cfmail&gt;
</pre>
         </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">



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

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

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

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

<p>メモ : 登録されているすべての MIME メディアタイプのリストについては、www.iana.org/assignments/media-types/</a> を参照してください。</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> "cfmail タグの charset 属性で指定した文字エンコード"


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

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

  </body>
</html>
