How to connect third party apps like SUMOME to mautic?

How to Connect apps like sumome to mautic? I want to collect leads using sumome’s techniques and send it to a mautic list. How is this possible?

How to Connect apps like sumome to mautic? I want to collect leads using sumome’s techniques and send it to a mautic list. How is this possible?

I don’t see any API documentation at Sumome’s website. So I guess there is not much the Mautic community could do. You’d have to contact them to prepare a plugin for Mautic.

I contacted Sumome and Getsitecontrol’s support team and they confirmed they don’t have any integrations and, unfortunately, don’t plan to integrate with Mautic in the near future also. Bummer!

You dont need integration. After form submition in sumome you can pass email in GET variable to succes page. Yor succes page should be a auto-submitting mautic form. Set redirect also in mautic form, so after auto-submiting lead is redirect to home page or use some js and redirect user to site where he was first.

Sumome:
"Pass email address as get variable “email”
success-page.php:

[code]


<input style=“position: absolute; left: -9999px” id=“mauticform_input_email_sumome_email” name=“mauticform[email]” class=“mauticform-input” type=“email” value=<?php echo $_GET['email']; ?> >

[/code]

Mautic form: after form submission redirect to http://your.site/redirect.html
Use JS to redirect user to site where he’s submit sumome form:

<script type="text/javascript"> window.onload = history.go(-1); </script>

@pramodgeorge you can accomplish this easily using Zapier. Currently, Zapier support for Mautic is beta, but works.

Check the following links for more info:
https://www.mautic.org/community/index.php/254-zapier-integration/0
https://medium.com/@zpetterd/getting-mautic-cooperating-with-zapier-3267bd2e72ea#.v8fk9yvvp

I’m a big fan of Sumo – wrote up a tutorial on how to integrate with Mautic (using Zapier): https://innotiom.com/mautic-sumo-integration/