0

Campaign Monitor API を使用してメールを送信しています。この API を使用すると、create_from_template() というメソッドを使用して、テンプレート化された電子メールを作成できます。ドキュメントにあるように、フォーマットされたパラメーターをいくつか追加する必要があります。キャンペーン モニターの create_from_template() メソッドが実装するものは次のとおりです。

/**
     * Creates a new campaign from a template based on the info provided.
     * At least on of the ListIDs and Segments parameters must be provided
     * @param string $client_id The client to create the campaign for
     * @param array $campaign_info The campaign information to use during creation.
     *     This array should be of the form
     *     array(
     *         'Subject' => string required The campaign subject
     *         'Name' => string required The campaign name
     *         'FromName' => string required The From name for the campaign
     *         'FromEmail' => string required The From address for the campaign
     *         'ReplyTo' => string required The Reply-To address for the campaign
     *         'ListIDs' => array<string> optional An array of list ids to send the campaign to
     *         'SegmentIDs' => array<string> optional An array of segment ids to send the campaign to
     *         'TemplateID' => string required The ID of the template to use
     *         'TemplateContent' => array required The content which will be used to fill the editable areas of the template
     *     )
     * @access public
     * @return CS_REST_Wrapper_Result A successful response will be the ID of the newly created campaign
     */
    function create_from_template($client_id, $campaign_info)
    {
        return $this->post_request($this->_base_route . 'campaigns/' . $client_id . '/fromtemplate.json', $campaign_info);
    }

したがって、 $campaign_info パラメータとして指定しました

        $list = array($list_id);
        $data = array(
            'Name' => $name_string,
            'Subject' => $subject_string,
            'FromName' => $some_name,
            'FromEmail' => "contact@email.org",
            'ReplyTo' => "contact@email.org",
            'ListIDs' => $list_id,
            'SegmentIDs' => array(),
            'TemplateID' => 'a6dd1168417a6d7d7f94da70c3cafe15'
            'TemplateContent' => array(
                                       'Singlelines' => array('Content' => $a_string ,
                                                              'Href' =>  $a_href
                                                              ),
                                        'Multilines' => array('Content' => $content
                                                             ),
                                        'Images' => array('Content' => $some_url,
                                                          'Href' => $some_href,
                                                         )

                                      )
                  );

しかし、API ポスト リクエストをキャンペーンの監視サーバーに送信すると、次のようなメッセージが表示され続けます。

object(CS_REST_Wrapper_Result)#32 (2) { ["response"]=> object(stdClass)#29 (2) { ["Code"]=> int(400) ["Message"]=> string(110) "Failed to deserialize your request. Please check the documentation and try again. Fields in error: campaign" } ["http_status_code"]=> int(400) }

どこから来たのか誰か知っていますか?

編集:これらのパラメータを渡すと

$template_content = array(
  'Singlelines' => array(),
  'Multilines' => array(),
  'Images' => array(),
  'Repeaters' => array()
);

そして配列$data 'TemplateContent' => $template_contentでは、すべてが正常に機能しますが、いくつかのパラメーターを追加すると機能しません

4

1 に答える 1

3

こんにちは user1611830,

github repoのサンプルに従って、Singlelines、Multilines、および Images のそれぞれが of である必要がありarrayますarrays

arrayまた、Repeaterには空を含めるのが最善です。

したがって、おそらく次のようなものを探しているでしょう (括弧が足りない場合は申し訳ありませんが、Singlelines、Multilines、および Images のそれぞれを別の行でラップする限り、array()正しいはずです:

$template_content = array(
    'Singlelines' => array(
        array(
            'Content' => $a_string,
            'Href' =>  $a_href
        )
    ),
    'Multilines' => array(
        array('Content' => $content)
     ),
    'Images' => array(
        array(
            'Content' => $some_url,
            'Href' => $some_href,
        )
    ),
    'Repeaters' => array()
);
于 2013-02-05T07:15:27.523 に答える