How to enable and use the Trello integration
Overview
The Trello integration allows you to link new or existing Trello cards to conversations in Front. They are a few key benefits:
- Once a Trello card is linked to a Front conversation, you can easily access it directly from Front
- When a Trello card is attached to a Front conversation, a link back to all related conversations in Front will be added as an attachment to the Trello card
You must have Front company admin permissions to set up the integration.
Instructions
Admin steps
Step 1
Click the gear icon on the top right of Front and into the Company settings tab. Go to the App store from the left menu.
Step 2
Select Trello from the list of integrations. Click See details, then click Enable app.
Step 3
Click Save to finish enabling the Trello integration.
End-user steps
Step 1
Open a conversation in your inbox, and click the tag icon at the top right. Select Trello card.
Step 2
The first time you use the Trello card tag option, you will be required to sign in to Trello from Front using your Trello credentials.
Step 3
After linking your Trello account, complete the detail fields to create a new task. When you're done, click Create card.
Step 4
Your task is now be posted. You will see a tag to the right of the subject line of your email. You can click the tag to open the task in Trello.
Pricing
This feature is available on all plans.
6 replies
-
Hi - We use Front to both send and receive Twilio SMS....and love it!
I wanted to attach photos to some of our automated texts ... but we cant seem to get the code to work. Twillio has great documentation for sending MMS direct through them, but we want to send through Front so we have a send / receive history in our inbox.
Can anyone help with the code for MMS / texts with image attachments?
Below is the code snippet we are trying to use.
It would be great if someone from Front could help.
Daniel
----
$sms_content = 'Twilio testing';
$user_phone_no = "+12028177617";
$twilio_data = array();
$twilio_data['to'] = array($user_phone_no);
$twilio_data['body'] = $sms_content;
$twilio_data['attachments'] = array("url"=>"https://tableathome.com/wp-content/uploads/IMG_3888-150x150.jpg","filename"=>"IMG_3888-150x150.jpg");$curl = curl_init($twilio_url);
curl_setopt($curl, CURLOPT_POST, true);
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($curl, CURLOPT_HEADER, false);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_HTTPHEADER, array(
'Authorization: Bearer '.$twilio_token,
'Content-Type: multipart/form-data',
'Accept: application/json',
));curl_setopt($curl, CURLOPT_POSTFIELDS, json_encode($twilio_data));
$tw_response = curl_exec( $curl );
$twilio_response = json_decode($tw_response);
print_r($twilio_response);
if($twilio_response->status == "accepted"){
echo "test"; -
Daniel Swift Hey Daniel, we got your message. To better communicate, our technical support team will be responding to you from support@frontapp.com .
-
Awesome. Thank you
-
Hi - I never got a email reply :(
-
Daniel Swift You should have received a message from us regarding this issue. Can you please check your inbox and if you still do not see our reply can you please contact us again on support@frontapp.com . Thank you. :)
-
Urszula I did get a sort of 'cut and paste' reply from one of your devs .... but to be honest I was hoping to get a little more considered response :( Are you able to help