Telegram::forwardMessage PHP Method

forwardMessage() public method

Use this method to forward messages of any kind. On success, the sent Message is returned
Values inside $content:
Parameters Type Required Description
chat_id Integer Yes Unique identifier for the message recipient — User or GroupChat id
from_chat_id Integer Yes Unique identifier for the chat where the original message was sent — User or GroupChat id
message_id Integer Yes Unique message identifier
\param $content the request parameters as array \return the JSON Telegram's reply
public forwardMessage ( array $content )
$content array
    public function forwardMessage(array $content)
    {
        return $this->endpoint("forwardMessage", $content);
    }