Newsletter Signup Form

Looking for help creating a simple "Sign up For Our
Newsletter" form for collecting email addresses. Thanks.

Is there any way to use a Muse form to collect that data and send it directly to my database (ie Google Sheets, Get Response, etc.)?  I could insert HTML, but I have tried that and it does not work render correctly.
Get Response docs say  I need to be able to put this data into the form code of the form:
<form action=”https://app.getresponse.com/add_subscriber.html” accept-charset=”utf-8” method=”post”>
<input type=”hidden” name=”campaign_token” value=”XXXXXX (Paste your campaign token here)“/><br/>
If there is no way to do this with a Muse form, then that should be a top priority on the Muse roadmap.

Similar Messages

  • Using BC Form for Newsletter Signup on 3rd party platform

    I am working with a client who has a 3rd party online store, but their website is hosted on BC platform. I need to provide the newsletter signup form code to the other dev team so they can recreate the form to allow customers to signup for the newsletter while shopping in the the new online store. Is there any documentation on this? It seems that the .js files are BC specific.
    The form is making a call to "/CampaignProcess.aspx?ListID=27563". This does not exist on the site and the 3rd party developer needs access to that actual aspx file or have the full URL path?
    The form also makes a call to "/CatalystScripts/ValidationFunctions.js". This does not exist on the site and the 3rd party developer needs access to that actual aspx file or have the full URL path

    Mario,
    I appreciate your response, but I'm not quite sure I understand your
    proposed solution.  I get an error when using that URL -- *ERROR: Email
    address could not be added to list.*
    Sean Garcia | BayouFire Media, LLC | [email protected]
    <[email protected]> | 985-807-3931 | Building Dynamic Online
    Businesses | bayoufiremedia.com
    On Thu, Aug 21, 2014 at 7:24 PM, mario_gudelj <[email protected]>

  • Newsletter signup option

    Here is a basic one I would hope could be implemented very soon... I'd like to see the option to include a BC newsletter signup button when creating a web form in Muse.

    Yes, BC is a great option. We use it for all our clients.
    Conversly, if you're not using BC, then let's start with who are you using for the outbound newsletter? Constant Contact? Mail Chimp?
    Either one of those should have a "sign-up" form you can embed into the Muse site.

  • Constant Contact's HTML signup form not working in iWeb 3.3, only displays code

    I'm trying to add an email signup form to my iWeb 3.3 website.  I use Constant Contact for my email and event marketing and they provide the code to paste into one's HTML code (I can post the code if need be).  When I use the HTML Snippet widget to do this, however, instead of getting the form I get messy bits and pieces of code not only in iWeb but in the published version of my website.  Any ideas would be greatly appreciated.

    @Old Toad - Check, I definitely pasted into the appropriate box.
    @Wyodor - Tried your suggestion, but it resulted in nothing being displayed.  I guess it's better than messy code being displayed, but still no good.
    Here is the script I was given by Constant Contact:
    <!-- BEGIN: Constant Contact Stylish Email Newsletter Form -->
    <div align="center">
    <div style="width:160px; background-color: #ffffff;">
    <form name="ccoptin" action="<a href="http://visitor.r20.constantcontact.com/d.jsp">http://visitor.r20.constantcontact.com/d.jsp</a>" target="_blank" method="post" style="margin-bottom:3;"><span style="background-color: #006699; float:right;margin-right:5;margin-top:3"><img src="<a href="https://imgssl.constantcontact.com/ui/images1/visitor/email1_trans.gif">https://imgssl.constantcontact.com/ui/images1/visitor/email1_trans.gif</a>" alt="Email Newsletter icon, E-mail Newsletter icon, Email List icon, E-mail List icon" border="0"></span>
    <font style="font-weight: bold; font-family:Helvetica; font-size:16px; color:#006699;">Sign up for our Email Newsletter</font>
    <input type="text" name="ea" size="20" value="" style="font-family:Verdana,Geneva,Arial,Helvetica,sans-serif; font-size:10px; border:1px solid #999999;">
    <input type="submit" name="go" value="GO" class="submit"  style="font-family:Verdana,Arial,Helvetica,sans-serif; font-size:10px;">
    <input type="hidden" name="llr" value="xkgu59fab">
    <input type="hidden" name="m" value="1105784871255">
    <input type="hidden" name="p" value="oi">
    </form>
    </div>
    </div>
    <!-- END: Constant Contact Stylish Email Newsletter Form -->
    <!-- BEGIN: SafeSubscribe -->
    <div align="center" style="padding-top:5px;">
    <img src="<a href="https://imgssl.constantcontact.com/ui/images1/safe_subscribe_logo.gif">https://imgssl.constantcontact.com/ui/images1/safe_subscribe_logo.gif</a>" border="0" width="168" height="14" alt=""/>
    </div>
    <!-- END: SafeSubscribe -->
    <!-- BEGIN: Email Marketing you can trust -->
    <div align="center" style="font-family:Arial,Helvetica,sans-serif;font-size:10px;color:#999999;">
    For <a href="<a href="http://www.constantcontact.com/jmml/email-newsletter.jsp">http://www.constantcontact.com/jmml/email-newsletter.jsp</a>" style="text-decoration:none;font-family:Arial,Helvetica,sans-serif;font-size:10 px;color:#999999;" target="_blank">Email Newsletters</a> you can trust
    </div>
    <!-- END: Email Newsletters you can trust -->
    Any ideas?

  • AJAX/JSON functionality for Newsletter Subscription Form

    Okay so we have Newsletter subscription form where we would like to implement this functionality using steps shown here - http://demo.businesscatalyst.com/json-form.
    We used following code and it didn't work:
    <script type="text/javascript">
                                function jqsub() {
                                var $f = $('#newsletter_signup');
                                var $m = $('#newsletter_form_result');
                                $f.find('.btn').prepend('<i class="icon-spinner icon-spin"></i>').addClass('disabled').attr('disabled', 'disabled');
                                $.ajax({
                                  type: 'POST',
                                  url: $f.attr('action') + '&amp;JSON=1',
                                  data: $f.serialize(),
                                  success: function(msg) {
                                    var formResponse = eval(msg);
                                        if (formResponse.FormProcessV2Response.success) {
                                                $f.fadeOut(function(){ //Hide the form
                                                        $m.addClass('success').fadeIn().html("<p>Thank you for signing up to receive updates and offers.</p>");
                                    error: function(msg) {
                                    alert('error'+msg);
                                    return false;
                                </script>
    Then we noticed that user gets automated message and also we can see admin area that he has subscribed to newsletter, that means although there is no movement on the page, form gets submitted. That means the "if" argument is not working. That leads us to the question what would form newsletter subscription return upon submission - would it retuern "FormProcessV2Response"? Then we took off  "var formResponse = eval(msg);  if (formResponse.FormProcessV2Response.success)" and modified code as below.
    <script type="text/javascript">
                                function jqsub() {
                                var $f = $('#newsletter_signup');
                                var $m = $('#newsletter_form_result');
                                $f.find('.btn').prepend('<i class="icon-spinner icon-spin"></i>').addClass('disabled').attr('disabled', 'disabled');
                                $.ajax({
                                  type: 'POST',
                                  url: $f.attr('action') + '&amp;JSON=1',
                                  data: $f.serialize(),
                                  success: function(msg) {
                                                $f.fadeOut(function(){ //Hide the form
                                                        $m.addClass('success').fadeIn().html("<p>Thank you for signing up to receive updates and offers.</p>");
                                    error: function(msg) {
                                    alert('error'+msg);
                                    return false;
                                </script>
    This code worked in terms of triggering fadding in and out animations, but now our concern is if this is a right way of tackling this issue. Would it be processed correctly when any error occured? Should we have any if argument similar to what we had in previous code?
    If someone can guide us on this one, then it would be really great.
    Thanks

    Dear vora,
    Its very simple, matter of adding simpel jQuery related code. I mean something like Ajax submitting form without page refresh and getting JSON response back.
    For instance have a look over this example..
    http://www.java4s.com/jquery-tutorials/submit-form-without-refreshing-page-in-javajsp-with -jquery/
    Even the newsletter they are using is based on jQuery/JSON, in fact they applied through PHP, however you can use in any technology.
    Regards

  • Mailchimp - SIGNUP FORM STYLING AND EMBEDDING

    Hello everyome
    I'm trying to style my MAILCHIMP SIGNUP form -
    on a lot of tutorials they show how its done for word press - they insert the HTML code on the page and put the CSS in an area for that - i tried to put the CSS in the header on a page on muse and the main html content on a webpage using the HTML object feature - but it doesn't seem to style the form at all -
    Any idea - does any one have any suggestions on how a signup form like that can be done with adobe mud

    Hi
    Please try the suggestion mentioned here :
    Re: Muse and mailchimp
    Thanks,
    Sanjit

  • Newsletter signup with form widget

    I do not use BC for hosting, and I am using Get Response for newsletters. I have a nicely designed form I have built in Muse that flows with the rest of the site design. Is there any way to use this Muse form, or am I going to have to embed a Get Response form?

    Is there any way to use a Muse form to collect that data and send it directly to my database (ie Google Sheets, Get Response, etc.)?  I could insert HTML, but I have tried that and it does not work render correctly.
    Get Response docs say  I need to be able to put this data into the form code of the form:
    <form action=”https://app.getresponse.com/add_subscriber.html” accept-charset=”utf-8” method=”post”>
    <input type=”hidden” name=”campaign_token” value=”XXXXXX (Paste your campaign token here)“/><br/>
    If there is no way to do this with a Muse form, then that should be a top priority on the Muse roadmap.

  • Integrating newsletter submission form into adobe muse (with business catalyst hosting)

    Hi,
    I have seen some posts on this question but i don't quite understand how i should go about this. I have created a form, for my newsletter, in muse which fits the style of my website, i would like to use this form to automate a response when someone signs up to it. Will the visitors details be stored on the business catalyst CRM database? Any help would be appreciated.
    Lewis

    Hello Lewis,
    Visitors details will be stored on Business catalyst. I found a video, that shows how you can add the BC modeules in Muse, and customize it, it is using News section for example, this will give you an idea, how you can do this for Newsletter
    Please let me know if you have any other query.

  • Bug in new user signup form

    I just signed up for an OTN account; I didn't put my city in the address part, and when this error was flagged and I was returned to the form, both the "State/Province" comboboxes had been reset to contain the US states (I am in Australia).

    Well, if you don't want to create a list manually, create a sealed management pack that defines the root of the new enumerator. Then create a workflow that will pull all users from AD, build the list of the locations used in AD and update the child enumerators
    if required.
    Cheers,
    Marat
    Site: www.scutils.com 
    Twitter: LinkedIn:
    Graveyard:

  • E-mail signup web form - Error message

    My index page has a newsletter signup web form. The workflow attached works, but when a user enters their e-mail and clicks "submit" they get an error message. I used a bc gurus template and this is the one thing I cannot find, how to change the link of the submit button or fix the confirmation. url is thesoleconnectionllc.com
    I'm stumped, help would be greatly appreciated!!
    Thanks

    It is a module inserted basic implementation.
    It allows for drag and drop ordering which will update the form and any changes and new additions will update the form - which is what is happening in your case.
    ID's etc changing have no baring on what is happening.
    But what your saying... I am not sure your seeing what your saying. Even in this case I do can not replicate what your doing.
    This is a test form:
    The ID is - CAT_Custom_19956061
    I can edit auto responder, I can add new fields, I can save and update the form in the admin, go into another part of the admin and come back - the ID for this field NEVER changes. The Script ID etc in the html of course updates if I make changes this never changes.
    The ONLY way this changes is if I delete and remake the field.
    So you need to make a BC support ticket. Your either doing something critical like removing and re-adding the form fields and not stating that here or, for what ever reason on that site only there is an issue.

  • Newsletter sign-up form

    Hi,
    Trying to add a form for visitors to a site allowing them to
    sign up for an e-mail newsletter. Can anyone point me to a good
    tutorial for this task. The dreamweaver side is basic enough but I
    guess I will have to make stuff happen at the server side as well
    which is not my area of expertise.
    Also the site owner is a non techie and she will need to
    access the newsletter signup list somehow....
    Any advice appreciated...
    /Thanx

    The first suggestion you'll receive from most here is to clean up your code
    http://validator.w3.org/check?uri=http%3A%2F%2Fwww.physioworks4me.com%2F&charset=%28detect +automatically%29&doctype=Inline&group=0
    Also, you may have quicker results changing to a HTML Transitional doctype.

  • Newsletter Form with only Email address?

    Hi guys
    I would like to add a Newsletter Subscripiton form without the Name and Last name fields.
    http://kinship.businesscatalyst.com/About/about-us
    The subcsripiton field is at the bottom footer.
    When submitting the form I get an error:
    "ERROR: An error occurred. Your web form must capture customer name and email address. Please fix this issue and re-insert your web form on your web page."
    I don't want the name just email. Is it possible?
    When I try to create a new form those fields (Name, Last Name and Email) are automatically added and there is no way to delete them.
    Thanks
    Micha

    Thanks Mario,
    I wish we wouldn't have to add names. A better UX is to use email since Newsletters are usually generic and only require an email.
    In Any case BC must change there Dynmiac Forms. The use of Tables is insane and the fact that each update requires inserting the form again is very odd.
    Back to work now...-(
    Micha

  • Website Grader - Form Not Found

    I have built two forms for a client website. Yet every time I run Website Grader, I get this message:
    B. Conversion Form: Not Found
    The web page does not seem to contain any type of signup form where visitors can subscribe to a newsletter or future updates.
    We would suggest adding some type of simple subscription form (at a minimum) that allows users to get email updates. This is a great way for visitors to express their interest in the company and it's offering and for the business to stay in touch. Though RSS usage continues to increase, email is still what a majority of site visitors know and understand.
    Please contact me through forum for URL if needed.

    I have learned something about SEO from using some of these web tools. And quite often I'll overlook something that shows up when I run them.
    It would be better to learn from the horse's mouth rather than to rely on these commercial tools -
    http://www.seomoz.org/articles/search-ranking-factors.php
    And for heavens sake, anytime you see something from Jon Spivey, stop and read it! 8)
    Question: Are you still able to use your news reader for forum use, or do you now have to use the forum? 
    The NNTP forums have been closed.  Let Adobe know how you feel about this.
    My Profile says I have 0 Points. But there is one red bar. Is that a demerit?
    Yes.  Report to the Principal's office right away.  Don't forget your Hall Pass.

  • Contact Form data to Google Docs/Contacts?

    In Adobe Muse CC, I want to create a single-line signup form just like the following I have already created using the form widget:
    However I would like the results to be sent straight to a spreadsheet in Google Docs, or more preferably straight into my Google Contacts so that I start building an email list from the submissions (I use Google Apps for Business).
    And if at all possible to have a tag in Google Contacts associated with them automatically so that I know who in my contacts list came from my website form.
    Is there any way that I can do this?
    Is this a feature of Business Catalyst webBasics subscription?
    Can I do this using a site hosted somewhere other than Business Catalyst?
    Thanks in advance.

    Hi,
    Unfortunately there is no direct way to link your webform to a Google Spreadsheet using Muse. But You can try to export your site as html and use some code like PHP. Here is a helpful article,
    http://www.farinspace.com/saving-form-data-to-google-spreadsheets/
    Note: Business Catalyst does not support PHP or any server side scripting language
    With webbasic subscription, it is not possible, As you donot have the access to the CRM, you can see the detailed Plan Breakdown here, to see what is included in which plan.
    http://helpx.adobe.com/business-catalyst/kb/detailed-plan-breakdown.html
    In Business Catalayst there is a feature called mailing list, you can use it, check the guide below
    http://helpx.adobe.com/business-catalyst/sbo/create-email-marketing-mailing-list.html
    Regarding Godaddy, I have no idea, how they work, so it's better you reach out to there technical support to get a detailed instructions

  • Developing a 2 page form, username on the 1st page, password on 2nd how can i force FF to use the username from previous page when it asks to remember acct info?

    I am developing a 2 page signup form, where the person enters their username on the 1st page and password on the 2nd.
    When I test the form, FF asks to remember my password for the site - however it thinks the zipcode (field above the password) is the username on the account.
    I have tried to put their username/email in a hidden field on the 2nd page, just above the password field - and that did not work.
    How can i force FF to use the username from previous page when it asks to remember acct info?

    This website is using autocomplete=off to prevent Firefox from saving and filling the name and password.
    You can remove autocomplete=off with a bookmarklet to make Firefox save names and passwords and other form data.
    *http://kb.mozillazine.org/User_name_and_password_not_remembered

Maybe you are looking for

  • Mysterious CPU cycles being eaten!

    This is new. It started about a week ago. I've noticed that while browsing certain sites, some with heavy Flash content and some without, my CPU activity shoots up. For the most part, I expect this. If I'm running a Flash game in Chrome or FF, I can

  • 42" flat panel TV not working

    I'm having difficultly connecting my new 42" flat screen tv to my old powerbook g4 15". Using a direct DVI to HDMI connection will not work at all however a DVI/VGA adapter connecting to the tv's VGA slot does work it just doesn't work full screen -

  • Can we have a stage location outside the Server?

    I am using Weblogic 9.2 and I need to have a stage location outside the server. I can use No Stage option when I deploy, but on Cluster I found that it has only one source location for the Cluster. So on the second node, it looks for the same locatio

  • My iPhone5c says connect to iTunes after I tried to the 7.1.2 update. What should I do?

    My iPhone5c had a new update the new update 7.1.2 and after I had tried doing the update my phone said connect to iTunes and now I can't get off!!! Please help me!

  • Handling attachments in XI

    Hi All, I am working on a scenario where in I recieve the Payload from a web service.The payload consists of 2 parts one is the xml document and the second is the attachment (image,PDF,..).When I monitor the messages in sxmb_moni I find 2 payloads as