Form Submissions via API - api

I have a form embedded on my website via Hubspot API. I want to receive an email notification if someone submits the form. I tried the solution given on the HubSpot community but it does seem to work.
Here it is https://developers.hubspot.com/docs/methods/forms/submit_form
https://developers.hubspot.com/docs/methods/forms/submit_form_v3
Can anybody provide a solution? TIA.

Under Marketing -> Lead Capture -> Forms, find and open the relevant form. Click the Options tab at the top and in the middle of the page locate Send submission email notifications. Select your user from the drop down list or manually enter an email.

Related

Approve/Reject with Infopath instead of OOTB email link

We are using the OOTB Approval workflow for some tasks that is kicked off when a user enters info on a custom InfoPath form and clicks submit. The user receives the OOTB email with instructions to 1. Review the task 2. Perform the activities for the task and then 3. Use the Open this Task button within Outlook to approve/reject the task.
When the user clicks to review the task, it opens our InfoPath form that was used to create the item so they can review it. Here, I would like to add buttons for Approving and Rejecting the item so that the user does not have to go back into Outlook and use the Open Task option.
I have looked at the OOTB InfoPath form that Outlook opens with approve/reject but the data connections appear to be related only to that form and I cannot seem to recreate them. I think I need to submit the Approve/Reject strings somehow to some list/data location but I'm not sure how to do this.
How can I add Approve/Reject buttons to my InfoPath form that will approve/reject an OOTB workflow task?
If you are using the task list just for approve/reject, I would suggest not to create the task at all. Add a field in the infopath form with option of Approve/Reject and based on its value you can just change the workflow status of the item as approve/reject.

Getting empty contact us email

From web pages, I have created one form using "Allow people to send questions/comments via a contact form" but when i submit form, it is showing nothing in email means only labels and no data entered by users.
When user submit information from contact form then why it shows nothing in email as you can see following image showing issue.
What can be the issue and how I can solve it?

Is it possible to add user tracking method in EDM (Electronic direct mailer) Email click?

Here is the scenario:
We have designed an email template in which there are two option buttons: "Yes" & "No".
We send this email template to a group of user email lists.
After that, can we track the event where a recipient clicks on either the Yes button or No button.
which method can be used to track down how many of the recipients had clicked the Yes button or the No button?
how difficult is it to track the selected option Yes/No made by each single user?
which tracker is preferred: database tracker, google analytics tracker, mailchimp or other 3rd party web services?
With Google Analytics, you can do manual campaign tagging where you assign specific query parameters to each button. The query parameters will track back to your Google Analytics data, and can tell you which buttons were clicked. This is an easy method as all you need to do is build specific URLs for each button, and then embed those URLs into the email template for each button.
Here is the URL Builder site: https://support.google.com/analytics/answer/1033867?hl=en

Button Click in webpage via HTMLagilitypack

I am trying to fillout particular form over webpage using HTMLagility pack, but I am stuck as How to click the button on form via HTMLAgility. I have seen other option like HTMLElement, but I am not much into it.
below is link where one can have look
http://www.moneycontrol.com/india/fnoquote/acc/ACC
in this page, I am able to select "STOCK" dropdown menu and Expiry dropdown by setting attributes. But I need to click the "SEARCH FUTURES" button.
Any help of kind will be absolutely thankful.
All code should be explan in vb.net requested
You can't use the Html Agility Pack to click to click a button, nor do you want to. The easiest way to achieve what you are tying to do is install a tool that will view HTTP post parameters. I use fiddler, and you can download it here: http://www.telerik.com/download/fiddler. When you click the "Search Futures" button, here is the POST data that is sent:
instrument_type=FUTSTK&post_flag=true&see_all=&sc_id=MPS&short_name=Adani+Ports&user_sel_price=&stock_code=MPS&sel_exp_date=2014-02-26
If you look closery you can see "Adani Ports" and "2014-02-26". Those are the values from the the Stock and Expiry Date drop downs. Modify those two values to whatever you want, then send an HTTP POST from your app containing that post data.

Pop up Alerts in moss 2010 Intranet site

I need to create alerts to group/all employees in my site.To my site home page basing on the data pushed into "custome list" by administrator in moss 2010 intranet site.So can any one suggest steps to acheive this.Hoping quick replys...
Create a simple workflow using SharePoint designer and send out alerts/notification emails to the users in the group when something happens in your list (like a costume worth more than 100 bucks is entered etc..). You can trigger this notifications workflow in many scenarios.
See this link.
Check out this video on how to create workflows using designer.
Having said that, if you need a pop-up or a message box to appear when a user visits the site (and ofcourse when something changed on your list) then you have to write code in the load event of the page/any web part on the page to display popup. SharePoint 2010 has Javascript API which makes it easy for you to display pop-up or you can do this totally in the code.