I want to show all my gmail email's in my nextJS app. the purpose I want to do this is, I will filter out some data from my email. Like an email has this subject "Your account number is: 123456789". So from this subject I will show the number "123456789" in my UI which is made by NextJS.
I wants to know is there any react package or any other way which can help me out?
Related
I’m trying to make an app for flutter flow or a web app. Basically the purpose of it is for business owners to send sms request to customers to leave a review on google. The part I’m trying to figure out is the sign up process and the workflow of it.
So when the the business owner signs up I would like for them to input their name in the places autocomplete form then they select their business and it creates the review link for for them that is then placed in the template message. Is there a way to do this? Like how do I send the placeId from the autocomplete to this link https://search.google.com/local/writereview?placeid=<place_id>.
What I’m trying to get at is how do I replicate the workflow of this app cause I want to make exactly this https://odd.dog/reviews/sign-up/?get-started-for-free
First part of the question
I’ve registered in Mautic a number X of contacts via API from my main website, all those contacts have basic info including their name and id (I do not have their IPs). Now, I will send all of them a SMS with a link to a landing page. I want to register exaclty which of those X contacts are visiting the page.
I have to mention that a campaign exist for tracking this process. So, when a contacts visits the page, some actions or validations will ocurr.
What should I do to make Mautic know which contacts from those X are visiting the page?
My idea
Send the URL with a specifc parameter that somewhat allows Mautic to understand which one of the contact visited.
Is this possible? Do you consider there is a another way?
Second part
I have a form with one field on the page that register a cellphone number. I wish to register which contact is registering the number.
How can this be achieved?
My Idea:
I am thinking of adding another field asking the contact id, so the contact has to fill that in order to send the form
If you append the link sent via SMS with a ?email={contactfield=email|true}, the Mautic tracking pixel (cookie) will pick up this email when the user lands on the page and collapse the anonymous tracking session into the identified tracking session.
I haven't tested if you can also do this with SMS numbers or with contact IDs.
We publish our best practices for this, here: https://facetinteractive.com/blog/the-ultimate-mautic-setup-guide#emails
don't know if this is the right place to ask for this:
I'm currently working on a in-house control system in Google Sheets. Everytime a sales rep enters a work order, this work order with info filled in the form needs to be send to the designer team via email.
The form contains a field for the designer's ID (The form is here).
I've got two problems, first the designer's emails are in a different sheet and the email must be send to the designated designer each time a response is submitted.
This is the spreadsheet I am working on this link.
The email must contain all the fields in the form.
Thank in advance.
I am trying to create a question and answer style quiz on a website, using forms. I would like the submit button to email the user only, from a field he/she has previously filled in, but I can't figure out how. Also, advice on whether php is the best language to write this in?
I am very new to this and would really appreciate any help. Many thanks
use the phpmailer function to send emails using php. You can read more about it here and get the library from github here
I am using a salesforce workflow to send out product information and invoices to clients but I am running into problems thinking of how to verify if a client receives the email and or opens it. Is there any way to prove that a client received my inventory list or invoice? Doing some prior research on this subject I have come across the following suggestions:
Adding a 1x1 invisible image to the email with a unique id
Adding a regular image instead of a 1x1, maybe company logo
Having the recipient click a link to see the invoice
With all these solutions, you have to detect image requests or link request for them and extract/produce a unique id for each client. I am not really sure how to do this in salesforce so any help would be appreciated, along with other detection ideas.
If you have Salesforce Content, there are some ways to expose documents to clients with the features you need. Basically you'll send an email with link and later you can track confirmation of opening, count how many times was it downloaded.. You can also set the expiration date to the document (can't be downloaded anymore after the date).
As for "pure" email from Apex/Visualforce and basically manually recreating the Content's functionality... nowadays most mail clients block external pictures unless explicitly allowed by the mail recipient, so I suspect you'll have poor track of emails marked as opened. Probably you could create a small Visualforce page (no header, no styles, just controller that makes update "invoice viewed" in the database). Display image from Documents on this page (make sure it's "externally available image") or even just display 1 pixel encoded in base64...