You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ bin/flowdock send-chat-message your_flow_api_token "This message has been sent with mremi/flowdock PHP library"mremi
73
+
$ bin/flowdock send-chat-message your_flow_api_token "This message has been sent with php-censor/flowdock-client PHP library"php-censor
81
74
```
82
75
83
76
Some options are available:
84
77
85
78
```bash
86
-
$ bin/flowdock send-chat-message your_flow_api_token "This message has been sent with mremi/flowdock PHP library"mremi --message-id=12 --tags="#hello" --tags="#world" --options='{"connect_timeout":1,"timeout":1}'
79
+
$ bin/flowdock send-chat-message your_flow_api_token "This message has been sent with php-censor/flowdock-client PHP library"php-censor --message-id=12 --tags="#hello" --tags="#world" --options='{"connect_timeout":1,"timeout":1}'
87
80
```
88
81
89
82
### Team Inbox
90
83
91
84
```php
92
85
<?php
93
86
94
-
use Mremi\Flowdock\Api\Push\Push;
95
-
use Mremi\Flowdock\Api\Push\TeamInboxMessage;
87
+
use FlowdockClient\Api\Push\Push;
88
+
use FlowdockClient\Api\Push\TeamInboxMessage;
96
89
97
90
$message = TeamInboxMessage::create()
98
91
->setSource('source')
99
-
->setFromAddress('from.mremi@test.com')
92
+
->setFromAddress('test@test.com')
100
93
->setSubject('subject')
101
-
->setContent('This message has been sent with mremi/flowdock PHP library');
94
+
->setContent('This message has been sent with php-censor/flowdock-client PHP library');
$ bin/flowdock send-team-inbox-message your_flow_api_token source"from.mremi@test.com" subject "This message has been sent with mremi/flowdock PHP library"
113
+
$ bin/flowdock send-team-inbox-message your_flow_api_token source"test@test.com" subject "This message has been sent with php-censor/flowdock-client PHP library"
121
114
```
122
115
123
116
Some options are available:
124
117
125
118
```bash
126
-
$ bin/flowdock send-team-inbox-message your_flow_api_token source"from.mremi@test.com" subject "This message has been sent with mremi/flowdock PHP library" --from-name=mremi --reply-to="to.mremi@test.com" --project=project --format=html --link="http://www.flowdock.com/" --tags="#hello" --tags="#world" --options='{"connect_timeout":1,"timeout":1}'
119
+
$ bin/flowdock send-team-inbox-message your_flow_api_token source"test@test.com" subject "This message has been sent with php-censor/flowdock-client PHP library" --from-name=php-censor --reply-to="test@test.com" --project=project --format=html --link="http://www.flowdock.com/" --tags="#hello" --tags="#world" --options='{"connect_timeout":1,"timeout":1}'
127
120
```
128
121
129
122
...and more features coming soon...
@@ -138,5 +131,3 @@ A feature is missing here? Feel free to create a pull request to solve it!
138
131
139
132
I hope this has been useful and has helped you. If so, share it and recommend
0 commit comments