Make a contact form information secure

I use Dreamweaver CC and Business Catalyst.
I want to make sure that the infomation people send to me in my contact forms is secure!
Does anyone have any advise for me on the best way to do this?
Thanks

The information is sent into BC into the CRM which you can only access by logging in to the admin or API through secure authentication.
You recieve a workflow notification summary of that to your email. You can stop the form havinga workflow if you do not want that to go to your email if you feel your email is not secure.
All BC data and information is secure.

Similar Messages

  • Which system does Muse use to make the contact form widget work?

    Hello,
    I am a graphic designer working with a coder to create a new website using Muse. My coder has asked me which system does Muse use to make the contact form widget work.  Looking at the page code it looks like ASP dot net and when the user clicks the button the form data is sent to a script called “FormProcessv2.aspx”. If this is the case which version?  (e.g. ASP 1.0 or 2.0 or 3.0) Does Muse use “dot net” or “.NET” or similar in the documentation? If so then does it say which version (e.g. 1.0 or 2.0)?
    Can anyone help me with these questions?
    Many Thanks
    Emma

    It's unclear what page URL/code you're looking at? Muse does not use ASP. Muse uses PHP for form processing and relies on PHP sendMail to send the form information as an e-mail.

  • How to make a contact form script

    i need help in how to make a contact form script, and how to
    insert it into dreamweaver ugent

    Does your host support PHP? If so -
    http://sourtea.com/articles.php?ref=30
    Shane H
    [email protected]
    http://www.avenuedesigners.com
    =============================================
    COMING SOON - Infooki [unboxed]:
    http://infooki.sourtea.com/
    Web Dev Articles, photography, and more:
    http://sourtea.com
    =============================================
    Proud GAWDS Member
    http://www.gawds.org/showmember.php?memberid=1495
    Delivering accessible websites to all ...
    =============================================
    "alagie82" <[email protected]> wrote in
    message
    news:em6gmt$q2n$[email protected]..
    >i need help in how to make a contact form script, and how
    to insert it into
    >dreamweaver ugent

  • How to make a contact form in Muse without email box?

    As the title asks, how can I a make a contact form with asking just for name and phone number?
    Thanks
    Pav

    p_nath, hello
    I had the same question for two days, before i find this thread.
    You are described the impossibility of creating form without mandatory fields, but this was clear when i had work expirience in Muse. That's sad, because Muse is very helpful software for non-html users, or beginners (like me) and let not coding.
    So, now question is that: will ever be possible to make these fields option?
    Thank you.
    p.s. Sorry for my english, writing from big, warm (only now) and boozy Russia.

  • How can I make my Contact Form send info to my email?

    Greetings! I have below a contact form that i have creaed with some help but I can't seem to make it send the information to my email address after it is submitted. That is my most important issue right now.
    A secondary issue is, can I make it so once this form is submitted it send the info to my email without doing a page redirect?
    Thanks in advance!

    Ok what about this code located at www.ybcreations.com/ContactTest.php?
    <?php
    // Set email variables
    $email_to = '[email protected]';
    $email_subject = 'BestMarketingNames Inquiry';
    // Set required fields
    $required_fields = array('fullname','email','comment');
    // set error messages
    $error_messages = array(
              'fullname' => 'Please enter a Name to proceed.',
              'email' => 'Please enter a valid Email Address to continue.',
              'comment' => 'Please enter your Message to continue.'
    // Set form status
    $form_complete = FALSE;
    // configure validation array
    $validation = array();
    // check form submittal
    if(!empty($_POST)) {
              // Sanitise POST array
              foreach($_POST as $key => $value) $_POST[$key] = remove_email_injection(trim($value));
              // Loop into required fields and make sure they match our needs
              foreach($required_fields as $field) {
                        // the field has been submitted?
                        if(!array_key_exists($field, $_POST)) array_push($validation, $field);
                        // check there is information in the field?
                        if($_POST[$field] == '') array_push($validation, $field);
                        // validate the email address supplied
                        if($field == 'email') if(!validate_email_address($_POST[$field])) array_push($validation, $field);
              // basic validation result
              if(count($validation) == 0) {
                        // Prepare our content string
                        $email_content = 'New Website Comment: ' . "\n\n";
                        // simple email content
                        foreach($_POST as $key => $value) {
                                  if($key != 'submit') $email_content .= $key . ': ' . $value . "\n";
                        // if validation passed ok then send the email
                        mail($email_to, $email_subject, $email_content);
                        // Update form switch
                        $form_complete = TRUE;
    function validate_email_address($email = FALSE) {
              return (preg_match('/^[^@\s]+@([-a-z0-9]+\.)+[a-z]{2,}$/i', $email))? TRUE : FALSE;
    function remove_email_injection($field = FALSE) {
       return (str_ireplace(array("\r", "\n", "%0a", "%0d", "Content-Type:", "bcc:","to:","cc:"), '', $field));
    ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
    <head>
    <!-- Contact Form Designed by James Brand @ dreamweavertutorial.co.uk -->
    <!-- Covered under creative commons license - http://dreamweavertutorial.co.uk/permissions/contact-form-permissions.htm -->
              <title>Contact Form</title>
              <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
              <link href="Billy testing/ContactForm.css" rel="stylesheet" type="text/css" />
              <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/mootools/1.3.0/mootools-yui-compressed.js"></script>
        <script type="text/javascript" src="Billy testing/validation/validation.js"></script>
              <script type="text/javascript">
    var nameError = '<?php echo $error_messages['fullname']; ?>';
                        var emailError = '<?php echo $error_messages['email']; ?>';
                        var commentError = '<?php echo $error_messages['comment']; ?>';
    function MM_preloadImages() { //v3.0
      var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
        var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
        if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
        </script>
    </head>
    <body onload="MM_preloadImages('Billy testing/x.png')">
    <div id="formWrap">
    <h2>We appreciate your business</h2>
    <div id="form">
    <?php if($form_complete === FALSE): ?>
    <form action="ContactTest.php" method="post" id="comments_form">
              <div class="row">
              <div class="label">Your Name</div> <!--end .label -->
              <div class="input">
              <input type="text" id="fullname" class="detail" name="fullname" value="<?php echo isset($_POST['fullname'])? $_POST['fullname'] : ''; ?>"/><?php if(in_array('fullname', $validation)): ?><span class="error"><?php echo $error_messages['fullname']; ?></span><?php endif; ?>
              </div><!-- end. input --><!-- end .context -->
              </div><!-- end .row -->
        <div class="row">
              <div class="label">Your Email Address</div> <!--end .label -->
              <div class="input">
              <input type="text" id="email" class="detail" name="email" value="<?php echo isset($_POST['email'])? $_POST['email'] : ''; ?>"/><?php if(in_array('email', $validation)): ?><span class="error"><?php echo $error_messages['email']; ?></span><?php endif; ?>
              </div><!-- end. input --><!-- end .context -->
              </div><!-- end .row -->
        <div class="row">
              <div class="label">Comments</div> <!--end .label -->
              <div class="input">
              <textarea id="comment" name="comment" class="mess"><?php echo isset($_POST['comment'])? $_POST['comment'] : ''; ?></textarea><?php if(in_array('comment', $validation)): ?><span class="error"><?php echo $error_messages['comment']; ?></span><?php endif; ?>
              </div><!-- end. input -->
              </div><!-- end .row -->
        <div class="submit">
        <input type="submit" id="submit" name="submit" value="Send Message" />
        </div><!-- end .submit-->
        </form>
         <?php else: ?>
    <p style="font-size:25px; font-family:Arial, Helvetica, sans-serif; color:#255E67; margin-left:25px;">Thank you for your Message!</p>
    <script type="text/javascript">
    setTimeout('ourRedirect()', 5000)
    funtion ourRedirect(){
              location.href='contact.html'
    </script>
    <?php endif; ?>
    </div><!-- end #form-->
    </div>
    <p> </p>
    <!-- end formwrap -->
    </body>
    </html>

  • Is it possible to make a contact form in child symbol?

    i want to use php - mysql based or pop3 contact form in symbol. you can see my sites navigation from: www.ugurcit.com.tr.
    is it possible, how can i use it in the symbols?

    pixlor wrote:
    Wow, Nadia! That's a really useful link! Thanks!
    You're welcome... coming from the Dreamweaver forum where I 'live' mostly, I do have a heap of links that I've been providing over there for years  :-)
    Nadia
    Adobe® Community Expert : Dreamweaver
    Unique CSS Templates |Tutorials |SEO Articles
    http://www.DreamweaverResources.com
    Book: Ultimate CSS Reference
    http://www.sitepoint.com/launch/005dfd4/3/133
    http://twitter.com/nadiap

  • Can I make a 'Contact Form' in Fireworks CS4?

    I would like to inbed a simple 'Contact Form' into one of the
    webpages that I am creating in Fireworks CS4 so that people could
    type a message, and then it would go straight to my email.
    Any help that you could provide will be appreciated!
    Thank You!

    You wouldn't do this is FW. It's strictly an HTML thing - use
    DW.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "gumbogood" <[email protected]> wrote in
    message
    news:gl5ibj$h5i$[email protected]..
    >I would like to inbed a simple 'Contact Form' into one of
    the webpages that
    >I
    > am creating in Fireworks CS4 so that people could type a
    message, and then
    > it
    > would go straight to my email.
    >
    > Any help that you could provide will be appreciated!
    >
    > Thank You!
    >

  • How to make information sent to me in my contact forms secure

    I use Dreamweaver CC and Business Catalyst.
    I want to make sure the information people send to me in my contact forms is secure!
    Does any one have advise for me on the best way I can do this?
    Thanks

    Use security protocols thorugh a secure server. Security certificates are around $100 annually.
    But if all you are looking to do is to have a form send you an email, unless it contains credit card information or other information that could be used to steal someone's identity, I think it's probably a waste of money.
    -Mark

  • My Client is having a serious problem with the Contact Form Widget

    My Client is having a serious problem with the Contact Form Widget that I can not figure out how to correct.
    I created a website for a client and inserted a Contact Form widget on their 'Contact Us' page. Whenever anyone uses the form, the e-mail my client receive shows my e-mail address as the sender. So, when they 'reply' to the e-mail, the reply is sent to me and not the person who sent the original message. This creates a major problem in that I get barraged with e-mail replies while my client's potential customers go without a response.
    When I look at  'Site Manager > System E-Mails > Workflow Information > E-mail From Address' on the site's Admin Console, it shows my e-mail information. Is this is what needs to be changed?  If it is, what needs to be placed in that field so that the e-mail my client receives shows the senders e-mail information in the 'From' field.  My client wants to be able to click reply and have the message sent to the right party. They would be very upset if they have to cut and past the senders e-mail address from the body text on every contact they receive.
    Their feeling is that if I can't find a way to make the contact form work the way it should, then it's useless to them.
    Can anyone help me figure this out? I really don't want to disappoint my first client.

    Are you on a plan that has the CRM feature that stores your customers' data? If so, the idea of the contact form is that you'll receive a notification that there's been an inquiry filled out on your contact form and there should be a link in that email notification that leads to the "Case" that was created when that customer filled out a contact form.  You can click that link and visit the case for that customer in your BC site and reply to them from there so that all of the correspondence is logged in the CRM for safe-keeping and for your records.
    If your client finds this is too much work to login to BC to reply every time, then you should check to see if you have the "Customer Service Ticketing" feature on your hosting plan.  This is a feature where you create a dedicated email account (like [email protected]) and the BC system will automatically login to that email account and pull any emails in that inbox and convert them to a customer case for the sender of the email and then it will send out a notification via email to any of the BC Admin users you delegate as "Customer Service Agents".  Since the CST integrates with the BC CRM it lets you reply directly within the email-- but when you reply it will be going to that same email address dedicated to the CST but once the CST service checks your email again and sees that you replied to this inquiry it will log your reply against the customer's case and sends your reply via email back to them so that all the correspondance gets logged on BC's CRM but you can still reply via email.
    There's no way to use the default web forms to update the "From" or "Reply-To" address.. it must come from an approved email address to avoid spam issues.  On most web services you cannot change the "from" address anyway but usually you can at least specify the "Reply-To" address so that when someone hits "reply" in their email client it will reply to whoever you setup as the "Reply-To" address.
    Here's some more information about CST: http://kb.worldsecuresystems.com/kb/customer-service-ticketing.html?bc-partner
    I don't think the CST feature is in the webMarketing BC plan-- I think it's only in the webCommerce plan so if you have less than an webCommerce plan you have to tell your client to reply through BC by clicking the link in the notification they get.  You can justify it by saying its one or two more steps but it keeps the entire convo on record in their CRM for easy referral later.

  • Change font size of contact form.

    Hi,
    I have been searching through google and various forums to make a contact form, and I finally have it working. (YAY!) HOWEVER...
    There's one problem: I don't know how to change the font size. Help?!
    Here's my action script code:
    submit_btn.addEventListener(MouseEvent.CLICK, sendMessage);
    function sendMessage(e:MouseEvent):void{
    var my_vars:URLVariables = new URLVariables();
    my_vars.senderName = name_txt.text;
    my_vars.senderEmail = email_txt.text;
    my_vars.senderMsg = message_txt.text;
    var my_url:URLRequest = new URLRequest("http://mydomain.com/mail.php");
    my_url.method = URLRequestMethod.POST;
    my_url.data = my_vars;
    var my_loader:URLLoader = new URLLoader();
    my_loader.dataFormat = URLLoaderDataFormat.VARIABLES;
    my_loader.load(my_url);
    name_txt.text = "";
    email_txt.text = "";
    message_txt.text = "Message Sent";
    Do I need to add something to my action script to modify the text size? If so, what? Or do I modify the text size through other means? I've been looking at tutorials online, forums, and I just couldn't find something that helped me.
    Thank you!
    -MP

    Ahh. Thanks for being patient with a newbie.
    So I've got the code in and compiler errors came up:
    Scene 1, Layer 'content', Frame 70, Line 3
    1119: Access of possibly undefined property defaultTextFormat through a reference with static type fl.controls:TextInput.
    Scene 1, Layer 'content', Frame 70, Line 4
    1119: Access of possibly undefined property defaultTextFormat through a reference with static type fl.controls:TextInput.
    Scene 1, Layer 'content', Frame 70, Line 5
    1119: Access of possibly undefined property defaultTextFormat through a reference with static type fl.controls:TextArea.
    Below is what I have in action script, did I need to place the code you gave me somewhere else?:
    var tfor:TextFormat=new TextFormat();
    tfor.size=12;
    name_txt.defaultTextFormat=tfor;
    email_txt.defaultTextFormat=tfor;
    message_txt.defaultTextFormat=tfor;
    submit_btn.addEventListener(MouseEvent.CLICK, sendMessage);
    function sendMessage(e:MouseEvent):void{
    var my_vars:URLVariables = new URLVariables();
    my_vars.senderName = name_txt.text;
    my_vars.senderEmail = email_txt.text;
    my_vars.senderMsg = message_txt.text;
    var my_url:URLRequest = new URLRequest("http://mydomain.com/mail.php");
    my_url.method = URLRequestMethod.POST;
    my_url.data = my_vars;
    var my_loader:URLLoader = new URLLoader();
    my_loader.dataFormat = URLLoaderDataFormat.VARIABLES;
    my_loader.load(my_url);
    name_txt.text = "";
    email_txt.text = "";
    message_txt.text = "Message Sent";

  • How to create a contact form in Muse?

    I have created the contact form in Muse...from going to Widgets>Detailed Contact...how do I set the "Submit" button to send to a current email address? When the site is live the button isn't clickable. Does anyone have a step to step process on how to make this contact form work?

    Hi,
    May I please have the URL of the site and any specific pages you'd like me to take a look at? Let me check before suggesting anything.

  • Contact Form Resetting after Submission Bug?

    Currently, when a contact form is submitted, all fields are cleared out and it appears that it returns to the Non-Empty state. However clicking in a field and then back out of it will make it go to the Empty state, as it seems like it should after submission. This seems like a bug?
    How do I make my contact form fully reset after clicking Submit?
    Also, is there a way to make a Clear Form button, or a widget that exists that does this?
    Thanks!
    Jeff

    Hi Sanjit,
    I agree, that's what it should do, however it doesn't. After submission, the form returns to the Non-Empty state with all form data removed. When you click on a field and then back off of it, it then switches over to the Empty state.
    Example: http://generationone.com/supportcenter/index.html
    You can see that after you submit the form, it resets to the Non-Empty state.

  • Contact Form in DreamWeaver or  Muse Help ?

    Anyone want to help out in building a custom contact form ?

    I want to make a contact form and have it sent to my email at my hosting company. Do you work for Adobe ?
    Have a good day !

  • Why some contact forms doesn't work on some websites? We don't receive the submission form with the information?

    Why some contact forms doesn't work on some websites? We don't receive the submission form with the information?

    Hi Aish
    I wanted to check the following, but the URL is not found, you have another one?
    thanks
    Nicole
        4. Visit http://my-site.com/scripts/form_check.php in a web browser and make sure you see all green checkmarks. If some items do not display green checkmarks that means that the hosting server is not configured correctly to allow the Form widgets to send email messages to the address you've specified.
                    Contact your web-hosting provider about the server configuration problem. Describe the items that are not marked as green in the form check page, so that they can help you set up the servers to use the correct settings.
    Il giorno 9-set-2014, alle ore 16:11, Aishvarya Raj Rastogi <[email protected]> ha scritto:
    Why some contact forms doesn't work on some websites? We don't receive the submission form with the information?
    created by Aishvarya Raj Rastogi in Help with using Adobe Muse CC - View the full discussion
    Hi Nicole,
    What is the "From" email address in your form?
    Also, have you checked the spam folder?
    Please check the following posts as well :
    https://forums.adobe.com/docs/DOC-3581
    Re: PHP mail may be disabled or incorrectly configured on the web server.
    Regards,
    Aish
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at https://forums.adobe.com/message/6714281#6714281
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
    To unsubscribe from this thread, please visit the message page at . In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Help with using Adobe Muse CC by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • Contact form with preloaded information

    Hey guys,
    I'm making a contact form for my site. Certain fields in the
    form like name, email address, etc., are already in a mysql
    database from the user registering. I'd like it to bring in the
    information from the mysql database to flash with php so that the
    user does not need to re-type them.
    I'm not sure how to make flash load the information into the
    dynamic text fields on the form upon entering frame one. Does
    anyone know how to do this? Thanks!

    No need for XML - don't bother with it. Just use PHP to pass
    key/value pairs
    back to flash using the LoadVars class. Do some reading on
    LoadVars, esp.
    the sendAndLoad method.
    Dave -
    www.offroadfire.com
    Head Developer
    http://www.blurredistinction.com
    Adobe Community Expert
    http://www.adobe.com/communities/experts/

Maybe you are looking for

  • No music,video or app sound from internal speaker.

    Ok so here's the deal... My itouch doesn't play any songs through the internal speaker but does through the headphones... Only thing is, it will make that swoosh sounds when connecting to a computer... I have done the 5 r's, went through all my setti

  • Find out why an SSIS package takes so long execute ?

    Is there any guideline which shows how to find out why a package is taking "too long" to execute ? I guess one situation could be that an SQL query (if you have one) is taking too long. Perhaps the query could be optimized or perhaps its table could

  • Invoke Save Content on Assigned TextFrame

    Hi, I'm trying to solve one situation... when assigned story is in status "In use and out of date". This one is quite disturbing for client (even more for developer) and could lead to unwanted direction like - getting back the old content and loosing

  • Refreshing a table from a database

    I executed the tutorial "Sun Java Studio Creator 2 - Tutorials - Performing Inserts, Updates, and Deletes". I am experiencing an anamoly in that when I select a new person for the selection where clause, the data for the previous person remains in th

  • OS X MAVERICKS iPHOTO

    I just downloaded OS X Mavericks yesterday and I notice that my iPhoto has a white circle with a line through it and it says "You can't use this version of the application "iPhoto" with this version of OS X." I am freaking out because I have so many