How to send attachments in different formats in an opportunity & related information via REST API callouts by clicking a custom button?
Related
I am new to Strapi and I want to create functionality, when a user submits form (from the frontend made in React js), in response to it the User will get a mail of form submission.
to send email in response of the type of request made
I have an api method on the backend that confirms the user email (POST request), how can I consume this api with react-admin? I am new to the framework and all I see is consuming CRUD operations(create, list, update and delete).
Nothing stops you from accessing your API with fetch from your own component. If you want you can use some helpers the react-admin team has provided as fetchUtils.
Already shown how here under the EDIT 2 part.
I am creating an application in Next.js(Frontend) and Php(Backend: REST API). Now what I want is whenever the user submits the form I want to get the form data from react js and post it to the REST API developed in Php. But I don't want to show the request on the Network tab as the request contains some sensitive data like token's etc. Is there a way that I can achieve this ? I am able to get the initial data using getServerSideProps().
You cannot hide the data in the Network tab. If you are dealing with sensible data you can encrypt the data before it gets send to the server and decrypt the data afterwards in the backend (PHP code).
I'm trying to connect messenger bot and dialogflow.
The idea is - when you click on the button, service is redirecting you to the me link
(example: http://m.me/2010070995927131?ref=initial_message_with_param)
then dialoglflow receives initial_message_with_param as message and fullfilment can generate the response.
Sending messages works at all but unfortunately, ref param doesn't.
Do you have any ideas why ref param is ignored on Dialogflow side?
Been few months, but i just came across here.
Under the "Edit Page Subscription Fields" in Messaging > Webhook in Facebook developers, you need to enable messaging_referrals to receive referral payload calls.
I am reading this documentation, it says:
The Gmail API allows you to upload file data when creating or updating a draft or when inserting or sending a message.
https://developers.google.com/gmail/api/guides/uploads
I am trying to upload an attachment to use for multiple emails. Emails have different content, but all with same attachment. Can I use the upload methods specified above to upload the attachment just once and then use it in sending multiple emails?