SendGrid - change unsubscribe page without turn on " Subscription Tracking"? - sendgrid

Currently, I'm using unsubscribe group and {{{unsubscribe}}} tag to manage unsubscription. I don't want to turn on "subscription Tracking" as I don't want to provide unsubscribe link in some emails.
when user click the link, they is being redirected to this page, wondering how could I modify this page? like change language to French, delete "View Opt Out Preferences" button?

Related

Button function in a SendGrid Email to Trigger an external Webhook

forgive my naivete in asking this question, but I'm hoping someone can help me.
I have an email I send out through the SendGrid api using a dynamic template. The content of the email is different for each user I send it to (highly curated). I send products, their name, info, and a link to buy them.
I am looking to create a "LIKE" button next to each product for the user to interact with in the email and provide feedback on that product. That is, if they like that product but don't want to click to buy yet, they can hit "LIKE" and I'll be informed.
I am thinking I would do this through a webhook using something like integromat where a click of the button would trigger the webhook and then I would use something like airtable to update information.
Is something like this feasible? Would I just put the webhook URL in the href tag of a button? Is it possible to trigger the webhook AND then redirect to a window/tab that would acknowledge that the button was clicked?
Thank you for any feedback!
Links in an email will open a web browser outside of the email. This will make an HTTP request to the URL that you set as the HREF for the link (<a>). So, you can point that HREF directly at an endpoint on your own application and handle the request, storing the data about which user liked which product and rendering or redirecting the user to a confirmation page.
I think you may be complicating the idea by introducing the term webhook to this. I also see no reason you would want to include a third-party like Integromat to the proceedings.

Docusign Email Notifications

In my docusign account as shown below, I have only the option of where I only want to final, completed document sent to the sender as confirmation. However, I am still receiving all the emails like viewing and such and do not want those email. I just want the completed one. Is there a way to set this up in the API (xml) or in the Docusign account somewhere?
enter image description here
You are showing the admin setting.
Instead, go to https://appdemo.docusign.com/preferences/notifications to find your personal preferences (which you can also find from the top menu of web app, select "preferences"
and it should look like this:

G Suite calendar and mail integration

We use the Google Suite for corporate email, calendar etc. What I am trying to achieve here is, I need to be compose an email in gmail with a link to a calendar invite. I would also be able to fill in the details of the meeting through the invite which is embedded in the email. For example, I should be able to send an invite to xyz at company.com with subject Meeting to discuss status and with the body of Test Message. Is there a way I can do that?
I think the best way to do it is just use standard invitation. You just simply add new calendar event and set guests:
Open Google Calendar
Open an event, or create a new one. Specify event title and description - it will be then stated in the invitation email...
On the right, find the "Guests" section.
Start typing the name of the person and choose someone from your contacts. You can also type an email address to invite people who aren't in your contacts list.
When you're done editing your event, click Save.
When you save your event, an email invitation will be sent to your guests.
What is also good, there is .ics file in attachment of invitation email - can be useful for non google recipients using another email clients.
However, if you need URL of the event, you can get it on the event edit page in google calendar - there is a link on the bottom of the page: "publish event" - you can copy the link of the event there. But please be aware that the Google calendar the event is tied to needs to be public (or shared with the recipients), and not just the event itself. (This link is useful for google calendar users...)

"Send via Phone Call" button grayed out / disabled while trying to register for Facebook developer account

I am trying to register for a Facebook developer account. So I went to developers.facebook.com and then tried to go through the registration process. During the steps, facebook requires me to provide my phone number in order to receive a confirmation code for registration. A dialog box shows up and I enter my phone number in it. But even after I do this, I am unable to click on "Send via Phone Call" button because it is grayed out / disabled as shown below. Please note that I have just put a fake phone number for the image here, but the button won't enable in spite of my putting my real phone number.
All I could do is click on "Send as Text". But the problem with that is the fact my phone can't receive text messages. So I am stuck, because I can't click on the "Send via Phone Call" and receive a call on my phone for the confirmation code.
Could someone please let me know how I get around this and complete the registration process for the developer account? Either having a way to enable the "Send via Phone Call" button or having a way to register without a phone number or another way that I am not aware of would be good.
Thanks.
I think the original comment by Tzar deserves to be an answer as its 2016 and still, works:
Short story:
The Send via phone call button is greyed out and disabled, but the functionality exists. Facebook just made a lazy/temp/quickfix by just disabling the control, not removing the functionality. What that means is if you can simply enable the button, it will work. So we need to tamper with that html.
Solution:
Do an inspect element with your browser on that button, and simply remove the disabled="1" property. Here is the tricky part: the button will remain greyed-out but it will be clickable, and i can confirm it just worked for me.

Sending users messages - The right way

we would like to let the logged user in our web site invite his friends to participate in some scenario, IIRC the options we have are:
Keep in mind, we MUST know which users the message/notification sent to in order to interact back with the selection.
1) Raise a request dialog, with the multi friend selector, but unfortunately the 'message' field in the 'apprequest' dialog is only displayed in the app center and is not visible in the top bar notifications. which is very important for us.
2) Send a personal message, but this has no friend selector, so we raise the 'send' dialog but the selected recipients by user are not being recieved in the callback (only status is recieved back)
This question was asked here:
When a Facebook user sends the Send dialog within an application, can the application track the recipients?
We thought maybe to raise our own dialog for friend selection, and then popup the 'send dialog' with a pre-defined recipients but the user still can change the recipient in the send dialog (there's no way to freeze the selected recipients)
So what is the solution for this requirement?
Thanks.
We have decided to go with app notifications as it's the best option for the current restrictions.