0
使用PHP如何獲得返回狀態。信息是否已收到。我發現這個文件,但它使用PHP的時候是不是非常有幫助:PostageApp電子郵件,它們是否已發送
http://blog.postageapp.com/tag/php/
我不知道,但是這將是有效的:
if($this->postageapp->send()==true){ # returns JSON response from the server
//do something,
}else{
//otherwise
}
感謝
使用'var_dump($ this-> postageapp-> send())'結合成功和不成功的嘗試。 –