2009-12-22 103 views
1

有沒有人通過Campaign Monitor API取消訂閱後成功地重新訂閱電子郵件地址。在Campaign Monitor中重新訂閱電子郵件地址

我問,因爲我想保留活動用戶的電子郵件地址在我的CM活動列表中的列表。當他們被暫停時,他們會被刪除,當他們加入或支付他們的費用後纔會被刪除,他們被重新認購。

望着Rails的API文檔:

# File lib/campaign_monitor.rb, line 241 
    def remove_subscriber(email) 
     response = @cm_client.Subscriber_Unsubscribe("ListID" => @id, "Email" => email) 
     Result.new(response["Message"], response["Code"].to_i) 
    end 

# File lib/campaign_monitor.rb, line 445 
    def unsubscribe(list_id) 
     response = @cm_client.Subscriber_Unsubscribe("ListID" => list_id, "Email" => @email_address) 
     Result.new(response["Message"], response["Code"].to_i) 
    end 

在CM網站在用戶列表中移動郵件到您需要確認您有權重新訂閱他們的活動列表,任何人都可以肯定地說這也適用於API?

回答