Announcement

Collapse
No announcement yet.

e-mail simple information

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • e-mail simple information

    I know this has been hashed out before but I can't find it!
    I need to have the end user fill out Name, Address, Phone# etc hit a button and send the info to a predetermined e-mail address.
    Do I use a Text Block object? Any one has an example? [Cheesy smile]

    Thx
    Bruce

  • #2
    Re: e-mail simple information

    http://www.indigorose.com/ubbthreads...o=0&fpart=

    Corey Milner
    Creative Director, Indigo Rose Software

    Comment


    • #3
      Re: e-mail simple information

      Thx Corey-
      But I don't want to send the info to a server via PMP or what ever, LOL how can this be done so I can just send the info to a normal e-mail address? Or am I just not getting it?
      and what r u doing up so late!!??
      Thx guys!

      Comment


      • #4
        Re: e-mail simple information

        The first Para of Coreys link covers what you require :

        File.open mailto:[email protected]

        For the mailto lowdown :

        http://developer.netscape.com/viewso...to/mailto.html

        Comment


        • #5
          Re: e-mail simple information

          Where the shadows meet the horizon my friend...

          Didn't you know all evil super geniuses find it easier to work in the wee hours, read the handbook...

          Corey Milner
          Creative Director, Indigo Rose Software

          Comment


          • #6
            Re: e-mail simple information

            Come on guys help me out here! Explain to me in simple terms. I do not want to send a PHP. I don't have a "set" server to receive CGI script. Is there a "simple" way to achieve what I need to do from the first post????????

            [Under pressure]
            Bruce

            Comment


            • #7
              Re: e-mail simple information


              See previous answer - read Coreys post THE FIRST PARA, not the other techie stuff.
              Basically you do a file.open then in the file name section you put mailto:[email protected] or whoever you want the mail to go to, you can put other things in like subject etc, also as previous link I posted.

              Comment


              • #8
                Re: e-mail simple information

                Thx John-oh
                Now how do I get my Edit Feild Objects info into that e-mail??
                The information your giving me is confusing, I do not know HTML. are there any step-by-steps laying around?

                Comment


                • #9
                  Re: e-mail simple information

                  The mailto web site listed above is a good one. I would use edit field objects to obtain the information store in a variable of some sort and then do a mailto you. (mailto:[email protected]?Subject=File&Body=%25va riable%25)

                  I will work on a page this afternoon.
                  TJ-Tigger
                  "A common mistake that people make when trying to design something completely foolproof was to underestimate the ingenuity of complete fools."
                  "Draco dormiens nunquam titillandus."
                  Map of IR Forum Users - IR Project CodeViewer - Online Help - TiggTV - QuizEngine

                  Comment


                  • #10
                    Re: e-mail simple information

                    How do I call the %confused%? here's what I hve so far:
                    <IR_ACTIONS_LIST>
                    <Action name="Open">
                    <Type>7</Type>
                    <Function>0</Function>
                    <DTIndentLevel>0</DTIndentLevel>
                    <Enabled>1</Enabled>
                    <ErrorHandling>
                    <UserNotificationMode>2</UserNotificationMode>
                    <CustomErrorMessage/>
                    <OnErrorAction>0</OnErrorAction>
                    <JumpToLabel/>
                    </ErrorHandling>
                    <FileName>mailto:[email protected]?Subject=Free%20 bed%20info.&amp;amp;Body=%25name%25%0D%0A%25addres s%25%0D%0A%25phone%25%0D%0A%25salon%25%0D%0A%25ema il%25%0D%0A%0D%0A%0D%0A</FileName>
                    <Verb>open</Verb>
                    <WorkingDir/>
                    <RunMode>0</RunMode>
                    </Action>
                    </IR_ACTIONS_LIST>

                    Comment


                    • #11
                      Re: e-mail simple information

                      OK it is not very pretty but here is a .pg4 file for you to import

                      What it does is ask you for the information. checks to make sure that the fields are not blank, with the exception of the "address 2" field.

                      When you do a click to send it combines the information into a single variable and places the variable in the body of the e-mail message. I have not spent the time to make the data look pretty so it is all on one line but should be a start.

                      13378-edit.zip
                      TJ-Tigger
                      "A common mistake that people make when trying to design something completely foolproof was to underestimate the ingenuity of complete fools."
                      "Draco dormiens nunquam titillandus."
                      Map of IR Forum Users - IR Project CodeViewer - Online Help - TiggTV - QuizEngine

                      Comment


                      • #12
                        Re: e-mail simple information

                        try this one instead

                        13381-edit.zip
                        TJ-Tigger
                        "A common mistake that people make when trying to design something completely foolproof was to underestimate the ingenuity of complete fools."
                        "Draco dormiens nunquam titillandus."
                        Map of IR Forum Users - IR Project CodeViewer - Online Help - TiggTV - QuizEngine

                        Comment


                        • #13
                          Re: e-mail simple information

                          Tig-
                          Had a quick look, it works great. I now understand what I needed, will take a closer look later today. Thanks so much for taking the time!

                          Bruce

                          Comment


                          • #14
                            Re: e-mail simple information

                            Your code above would work if you removed the 25 after the % sign. What the %25 does is prints the character % instead of making it a variable. The mailto conversion tool mentioned above changes the % to %25 so it actually prints the % sign. But if you change the %25 to % it will load the variable into the mailto form as well.

                            The other thing I tried to do is compile all the variables used into a single variable with linebreaks but I was unable to get the linebreaks to work in a Set.Variable action. <font color=green>IR</font color=green> is it possible to have linebreaks added in a set variable action?
                            TJ-Tigger
                            "A common mistake that people make when trying to design something completely foolproof was to underestimate the ingenuity of complete fools."
                            "Draco dormiens nunquam titillandus."
                            Map of IR Forum Users - IR Project CodeViewer - Online Help - TiggTV - QuizEngine

                            Comment


                            • #15
                              Re: e-mail simple information

                              When I try to send this I get:

                              "The message could not be sent because one of the recipients was rejected by the server."

                              Then it still sends the email???

                              Any ideas? This is wat my code looks like added to a button:

                              <IR_ACTIONS_LIST>
                              <Action name="Get Text">
                              <Type>78</Type>
                              <Function>0</Function>
                              <DTIndentLevel>0</DTIndentLevel>
                              <Enabled>1</Enabled>
                              <ErrorHandling>
                              <UserNotificationMode>2</UserNotificationMode>
                              <CustomErrorMessage/>
                              <OnErrorAction>0</OnErrorAction>
                              <JumpToLabel/>
                              </ErrorHandling>
                              <Variable>%name%</Variable>
                              <ObjectName>name</ObjectName>
                              </Action>
                              <Action name="Get Text">
                              <Type>78</Type>
                              <Function>0</Function>
                              <DTIndentLevel>0</DTIndentLevel>
                              <Enabled>1</Enabled>
                              <ErrorHandling>
                              <UserNotificationMode>2</UserNotificationMode>
                              <CustomErrorMessage/>
                              <OnErrorAction>0</OnErrorAction>
                              <JumpToLabel/>
                              </ErrorHandling>
                              <Variable>%salonname%</Variable>
                              <ObjectName>salon name</ObjectName>
                              </Action>
                              <Action name="Get Text">
                              <Type>78</Type>
                              <Function>0</Function>
                              <DTIndentLevel>0</DTIndentLevel>
                              <Enabled>1</Enabled>
                              <ErrorHandling>
                              <UserNotificationMode>2</UserNotificationMode>
                              <CustomErrorMessage/>
                              <OnErrorAction>0</OnErrorAction>
                              <JumpToLabel/>
                              </ErrorHandling>
                              <Variable>%salonaddress%</Variable>
                              <ObjectName>salon address</ObjectName>
                              </Action>
                              <Action name="Get Text">
                              <Type>78</Type>
                              <Function>0</Function>
                              <DTIndentLevel>0</DTIndentLevel>
                              <Enabled>1</Enabled>
                              <ErrorHandling>
                              <UserNotificationMode>2</UserNotificationMode>
                              <CustomErrorMessage/>
                              <OnErrorAction>0</OnErrorAction>
                              <JumpToLabel/>
                              </ErrorHandling>
                              <Variable>%address2%</Variable>
                              <ObjectName>address 2</ObjectName>
                              </Action>
                              <Action name="Get Text">
                              <Type>78</Type>
                              <Function>0</Function>
                              <DTIndentLevel>0</DTIndentLevel>
                              <Enabled>1</Enabled>
                              <ErrorHandling>
                              <UserNotificationMode>2</UserNotificationMode>
                              <CustomErrorMessage/>
                              <OnErrorAction>0</OnErrorAction>
                              <JumpToLabel/>
                              </ErrorHandling>
                              <Variable>%city%</Variable>
                              <ObjectName>city</ObjectName>
                              </Action>
                              <Action name="Get Text">
                              <Type>78</Type>
                              <Function>0</Function>
                              <DTIndentLevel>0</DTIndentLevel>
                              <Enabled>1</Enabled>
                              <ErrorHandling>
                              <UserNotificationMode>2</UserNotificationMode>
                              <CustomErrorMessage/>
                              <OnErrorAction>0</OnErrorAction>
                              <JumpToLabel/>
                              </ErrorHandling>
                              <Variable>%state%</Variable>
                              <ObjectName>state</ObjectName>
                              </Action>
                              <Action name="Get Text">
                              <Type>78</Type>
                              <Function>0</Function>
                              <DTIndentLevel>0</DTIndentLevel>
                              <Enabled>1</Enabled>
                              <ErrorHandling>
                              <UserNotificationMode>2</UserNotificationMode>
                              <CustomErrorMessage/>
                              <OnErrorAction>0</OnErrorAction>
                              <JumpToLabel/>
                              </ErrorHandling>
                              <Variable>%zip%</Variable>
                              <ObjectName>zip</ObjectName>
                              </Action>
                              <Action name="Get Text">
                              <Type>78</Type>
                              <Function>0</Function>
                              <DTIndentLevel>0</DTIndentLevel>
                              <Enabled>1</Enabled>
                              <ErrorHandling>
                              <UserNotificationMode>2</UserNotificationMode>
                              <CustomErrorMessage/>
                              <OnErrorAction>0</OnErrorAction>
                              <JumpToLabel/>
                              </ErrorHandling>
                              <Variable>%phone%</Variable>
                              <ObjectName>phone</ObjectName>
                              </Action>
                              <Action name="Get Text">
                              <Type>78</Type>
                              <Function>0</Function>
                              <DTIndentLevel>0</DTIndentLevel>
                              <Enabled>1</Enabled>
                              <ErrorHandling>
                              <UserNotificationMode>2</UserNotificationMode>
                              <CustomErrorMessage/>
                              <OnErrorAction>0</OnErrorAction>
                              <JumpToLabel/>
                              </ErrorHandling>
                              <Variable>%email%</Variable>
                              <ObjectName>email</ObjectName>
                              </Action>
                              <Action name="Get Text">
                              <Type>78</Type>
                              <Function>0</Function>
                              <DTIndentLevel>0</DTIndentLevel>
                              <Enabled>1</Enabled>
                              <ErrorHandling>
                              <UserNotificationMode>2</UserNotificationMode>
                              <CustomErrorMessage/>
                              <OnErrorAction>0</OnErrorAction>
                              <JumpToLabel/>
                              </ErrorHandling>
                              <Variable>%years%</Variable>
                              <ObjectName>years</ObjectName>
                              </Action>
                              <Action name="IF">
                              <Type>200</Type>
                              <Function>1</Function>
                              <DTIndentLevel>0</DTIndentLevel>
                              <Enabled>1</Enabled>
                              <ErrorHandling>
                              <UserNotificationMode>2</UserNotificationMode>
                              <CustomErrorMessage/>
                              <OnErrorAction>0</OnErrorAction>
                              <JumpToLabel/>
                              </ErrorHandling>
                              <Condition>%name% = ""</Condition>
                              </Action>
                              <Action name="Message Box">
                              <Type>5</Type>
                              <Function>0</Function>
                              <DTIndentLevel>1</DTIndentLevel>
                              <Enabled>1</Enabled>
                              <ErrorHandling>
                              <UserNotificationMode>2</UserNotificationMode>
                              <CustomErrorMessage/>
                              <OnErrorAction>0</OnErrorAction>
                              <JumpToLabel/>
                              </ErrorHandling>
                              <DialogTitle>Missing information</DialogTitle>
                              <DialogMessage>The name field cannot be blank.</DialogMessage>
                              <Icon>1</Icon>
                              <Variable>%Result%</Variable>
                              <DialogType>0</DialogType>
                              <DefaultButton>0</DefaultButton>
                              </Action>
                              <Action name="RETURN">
                              <Type>207</Type>
                              <Function>1</Function>
                              <DTIndentLevel>1</DTIndentLevel>
                              <Enabled>1</Enabled>
                              <ErrorHandling>
                              <UserNotificationMode>2</UserNotificationMode>
                              <CustomErrorMessage/>
                              <OnErrorAction>0</OnErrorAction>
                              <JumpToLabel/>
                              </ErrorHandling>
                              </Action>
                              <Action name="END IF">
                              <Type>201</Type>
                              <Function>1</Function>
                              <DTIndentLevel>0</DTIndentLevel>
                              <Enabled>1</Enabled>
                              <ErrorHandling>
                              <UserNotificationMode>2</UserNotificationMode>
                              <CustomErrorMessage/>
                              <OnErrorAction>0</OnErrorAction>
                              <JumpToLabel/>
                              </ErrorHandling>
                              </Action>
                              <Action name="IF">
                              <Type>200</Type>
                              <Function>1</Function>
                              <DTIndentLevel>0</DTIndentLevel>
                              <Enabled>1</Enabled>
                              <ErrorHandling>
                              <UserNotificationMode>2</UserNotificationMode>
                              <CustomErrorMessage/>
                              <OnErrorAction>0</OnErrorAction>
                              <JumpToLabel/>
                              </ErrorHandling>
                              <Condition>%Salonname% = ""</Condition>
                              </Action>
                              <Action name="Message Box">
                              <Type>5</Type>
                              <Function>0</Function>
                              <DTIndentLevel>1</DTIndentLevel>
                              <Enabled>1</Enabled>
                              <ErrorHandling>
                              <UserNotificationMode>2</UserNotificationMode>
                              <CustomErrorMessage/>
                              <OnErrorAction>0</OnErrorAction>
                              <JumpToLabel/>
                              </ErrorHandling>
                              <DialogTitle>Missing information</DialogTitle>
                              <DialogMessage>The Salon Name field cannot be blank.</DialogMessage>
                              <Icon>1</Icon>
                              <Variable>%Result%</Variable>
                              <DialogType>0</DialogType>
                              <DefaultButton>0</DefaultButton>
                              </Action>
                              <Action name="RETURN">
                              <Type>207</Type>
                              <Function>1</Function>
                              <DTIndentLevel>1</DTIndentLevel>
                              <Enabled>1</Enabled>
                              <ErrorHandling>
                              <UserNotificationMode>2</UserNotificationMode>
                              <CustomErrorMessage/>
                              <OnErrorAction>0</OnErrorAction>
                              <JumpToLabel/>
                              </ErrorHandling>
                              </Action>
                              <Action name="END IF">
                              <Type>201</Type>
                              <Function>1</Function>
                              <DTIndentLevel>0</DTIndentLevel>
                              <Enabled>1</Enabled>
                              <ErrorHandling>
                              <UserNotificationMode>2</UserNotificationMode>
                              <CustomErrorMessage/>
                              <OnErrorAction>0</OnErrorAction>
                              <JumpToLabel/>
                              </ErrorHandling>
                              </Action>
                              <Action name="IF">
                              <Type>200</Type>
                              <Function>1</Function>
                              <DTIndentLevel>0</DTIndentLevel>
                              <Enabled>1</Enabled>
                              <ErrorHandling>
                              <UserNotificationMode>2</UserNotificationMode>
                              <CustomErrorMessage/>
                              <OnErrorAction>0</OnErrorAction>
                              <JumpToLabel/>
                              </ErrorHandling>
                              <Condition>%salonaddress% = ""</Condition>
                              </Action>
                              <Action name="Message Box">
                              <Type>5</Type>
                              <Function>0</Function>
                              <DTIndentLevel>1</DTIndentLevel>
                              <Enabled>1</Enabled>
                              <ErrorHandling>
                              <UserNotificationMode>2</UserNotificationMode>
                              <CustomErrorMessage/>
                              <OnErrorAction>0</OnErrorAction>
                              <JumpToLabel/>
                              </ErrorHandling>
                              <DialogTitle>Missing information</DialogTitle>
                              <DialogMessage>The Salon Address field cannot be blank.</DialogMessage>
                              <Icon>1</Icon>
                              <Variable>%Result%</Variable>
                              <DialogType>0</DialogType>
                              <DefaultButton>0</DefaultButton>
                              </Action>
                              <Action name="RETURN">
                              <Type>207</Type>
                              <Function>1</Function>
                              <DTIndentLevel>1</DTIndentLevel>
                              <Enabled>1</Enabled>
                              <ErrorHandling>
                              <UserNotificationMode>2</UserNotificationMode>
                              <CustomErrorMessage/>
                              <OnErrorAction>0</OnErrorAction>
                              <JumpToLabel/>
                              </ErrorHandling>
                              </Action>
                              <Action name="END IF">
                              <Type>201</Type>
                              <Function>1</Function>
                              <DTIndentLevel>0</DTIndentLevel>
                              <Enabled>1</Enabled>
                              <ErrorHandling>
                              <UserNotificationMode>2</UserNotificationMode>
                              <CustomErrorMessage/>
                              <OnErrorAction>0</OnErrorAction>
                              <JumpToLabel/>
                              </ErrorHandling>
                              </Action>
                              <Action name="IF">
                              <Type>200</Type>
                              <Function>1</Function>
                              <DTIndentLevel>0</DTIndentLevel>
                              <Enabled>1</Enabled>
                              <ErrorHandling>
                              <UserNotificationMode>2</UserNotificationMode>
                              <CustomErrorMessage/>
                              <OnErrorAction>0</OnErrorAction>
                              <JumpToLabel/>
                              </ErrorHandling>
                              <Condition>%address2% = ""</Condition>
                              </Action>
                              <Action name="Message Box">
                              <Type>5</Type>
                              <Function>0</Function>
                              <DTIndentLevel>1</DTIndentLevel>
                              <Enabled>1</Enabled>
                              <ErrorHandling>
                              <UserNotificationMode>2</UserNotificationMode>
                              <CustomErrorMessage/>
                              <OnErrorAction>0</OnErrorAction>
                              <JumpToLabel/>
                              </ErrorHandling>
                              <DialogTitle>Missing information</DialogTitle>
                              <DialogMessage>The Address 2 field cannot be blank. If there is no other address, type in NONE.</DialogMessage>
                              <Icon>1</Icon>
                              <Variable>%Result%</Variable>
                              <DialogType>0</DialogType>
                              <DefaultButton>0</DefaultButton>
                              </Action>
                              <Action name="RETURN">
                              <Type>207</Type>
                              <Function>1</Function>
                              <DTIndentLevel>1</DTIndentLevel>
                              <Enabled>1</Enabled>
                              <ErrorHandling>
                              <UserNotificationMode>2</UserNotificationMode>
                              <CustomErrorMessage/>
                              <OnErrorAction>0</OnErrorAction>
                              <JumpToLabel/>
                              </ErrorHandling>
                              </Action>
                              <Action name="END IF">
                              <Type>201</Type>
                              <Function>1</Function>
                              <DTIndentLevel>0</DTIndentLevel>
                              <Enabled>1</Enabled>
                              <ErrorHandling>
                              <UserNotificationMode>2</UserNotificationMode>
                              <CustomErrorMessage/>
                              <OnErrorAction>0</OnErrorAction>
                              <JumpToLabel/>
                              </ErrorHandling>
                              </Action>
                              <Action name="IF">
                              <Type>200</Type>
                              <Function>1</Function>
                              <DTIndentLevel>0</DTIndentLevel>
                              <Enabled>1</Enabled>
                              <ErrorHandling>
                              <UserNotificationMode>2</UserNotificationMode>
                              <CustomErrorMessage/>
                              <OnErrorAction>0</OnErrorAction>
                              <JumpToLabel/>
                              </ErrorHandling>
                              <Condition>%city% = ""</Condition>
                              </Action>
                              <Action name="Message Box">
                              <Type>5</Type>
                              <Function>0</Function>
                              <DTIndentLevel>1</DTIndentLevel>
                              <Enabled>1</Enabled>
                              <ErrorHandling>
                              <UserNotificationMode>2</UserNotificationMode>
                              <CustomErrorMessage/>
                              <OnErrorAction>0</OnErrorAction>
                              <JumpToLabel/>
                              </ErrorHandling>
                              <DialogTitle>Missing information</DialogTitle>
                              <DialogMessage>The City field cannot be blank.</DialogMessage>
                              <Icon>1</Icon>
                              <Variable>%Result%</Variable>
                              <DialogType>0</DialogType>
                              <DefaultButton>0</DefaultButton>
                              </Action>
                              <Action name="RETURN">
                              <Type>207</Type>
                              <Function>1</Function>
                              <DTIndentLevel>1</DTIndentLevel>
                              <Enabled>1</Enabled>
                              <ErrorHandling>
                              <UserNotificationMode>2</UserNotificationMode>
                              <CustomErrorMessage/>
                              <OnErrorAction>0</OnErrorAction>
                              <JumpToLabel/>
                              </ErrorHandling>
                              </Action>
                              <Action name="END IF">
                              <Type>201</Type>
                              <Function>1</Function>
                              <DTIndentLevel>0</DTIndentLevel>
                              <Enabled>1</Enabled>
                              <ErrorHandling>
                              <UserNotificationMode>2</UserNotificationMode>
                              <CustomErrorMessage/>
                              <OnErrorAction>0</OnErrorAction>
                              <JumpToLabel/>
                              </ErrorHandling>
                              </Action>
                              <Action name="IF">
                              <Type>200</Type>
                              <Function>1</Function>
                              <DTIndentLevel>0</DTIndentLevel>
                              <Enabled>1</Enabled>
                              <ErrorHandling>
                              <UserNotificationMode>2</UserNotificationMode>
                              <CustomErrorMessage/>
                              <OnErrorAction>0</OnErrorAction>
                              <JumpToLabel/>
                              </ErrorHandling>
                              <Condition>%state%= ""</Condition>
                              </Action>
                              <Action name="Message Box">
                              <Type>5</Type>
                              <Function>0</Function>
                              <DTIndentLevel>1</DTIndentLevel>
                              <Enabled>1</Enabled>
                              <ErrorHandling>
                              <UserNotificationMode>2</UserNotificationMode>
                              <CustomErrorMessage/>
                              <OnErrorAction>0</OnErrorAction>
                              <JumpToLabel/>
                              </ErrorHandling>
                              <DialogTitle>Missing information</DialogTitle>
                              <DialogMessage>The State field cannot be blank.</DialogMessage>
                              <Icon>1</Icon>
                              <Variable>%Result%</Variable>
                              <DialogType>0</DialogType>
                              <DefaultButton>0</DefaultButton>
                              </Action>
                              <Action name="RETURN">
                              <Type>207</Type>
                              <Function>1</Function>
                              <DTIndentLevel>1</DTIndentLevel>
                              <Enabled>1</Enabled>
                              <ErrorHandling>
                              <UserNotificationMode>2</UserNotificationMode>
                              <CustomErrorMessage/>
                              <OnErrorAction>0</OnErrorAction>
                              <JumpToLabel/>
                              </ErrorHandling>
                              </Action>
                              <Action name="END IF">
                              <Type>201</Type>
                              <Function>1</Function>
                              <DTIndentLevel>0</DTIndentLevel>
                              <Enabled>1</Enabled>
                              <ErrorHandling>
                              <UserNotificationMode>2</UserNotificationMode>
                              <CustomErrorMessage/>
                              <OnErrorAction>0</OnErrorAction>
                              <JumpToLabel/>
                              </ErrorHandling>
                              </Action>
                              <Action name="IF">
                              <Type>200</Type>
                              <Function>1</Function>
                              <DTIndentLevel>0</DTIndentLevel>
                              <Enabled>1</Enabled>
                              <ErrorHandling>
                              <UserNotificationMode>2</UserNotificationMode>
                              <CustomErrorMessage/>
                              <OnErrorAction>0</OnErrorAction>
                              <JumpToLabel/>
                              </ErrorHandling>
                              <Condition>%zip% = ""</Condition>
                              </Action>
                              <Action name="Message Box">
                              <Type>5</Type>
                              <Function>0</Function>
                              <DTIndentLevel>1</DTIndentLevel>
                              <Enabled>1</Enabled>
                              <ErrorHandling>
                              <UserNotificationMode>2</UserNotificationMode>
                              <CustomErrorMessage/>
                              <OnErrorAction>0</OnErrorAction>
                              <JumpToLabel/>
                              </ErrorHandling>
                              <DialogTitle>Missing information</DialogTitle>
                              <DialogMessage>The Zip Code field cannot be blank.</DialogMessage>
                              <Icon>1</Icon>
                              <Variable>%Result%</Variable>
                              <DialogType>0</DialogType>
                              <DefaultButton>0</DefaultButton>
                              </Action>
                              <Action name="RETURN">
                              <Type>207</Type>
                              <Function>1</Function>
                              <DTIndentLevel>1</DTIndentLevel>
                              <Enabled>1</Enabled>
                              <ErrorHandling>
                              <UserNotificationMode>2</UserNotificationMode>
                              <CustomErrorMessage/>
                              <OnErrorAction>0</OnErrorAction>
                              <JumpToLabel/>
                              </ErrorHandling>
                              </Action>
                              <Action name="END IF">
                              <Type>201</Type>
                              <Function>1</Function>
                              <DTIndentLevel>0</DTIndentLevel>
                              <Enabled>1</Enabled>
                              <ErrorHandling>
                              <UserNotificationMode>2</UserNotificationMode>
                              <CustomErrorMessage/>
                              <OnErrorAction>0</OnErrorAction>
                              <JumpToLabel/>
                              </ErrorHandling>
                              </Action>
                              <Action name="IF">
                              <Type>200</Type>
                              <Function>1</Function>
                              <DTIndentLevel>0</DTIndentLevel>
                              <Enabled>1</Enabled>
                              <ErrorHandling>
                              <UserNotificationMode>2</UserNotificationMode>
                              <CustomErrorMessage/>
                              <OnErrorAction>0</OnErrorAction>
                              <JumpToLabel/>
                              </ErrorHandling>
                              <Condition>%phone% = ""</Condition>
                              </Action>
                              <Action name="Message Box">
                              <Type>5</Type>
                              <Function>0</Function>
                              <DTIndentLevel>1</DTIndentLevel>
                              <Enabled>1</Enabled>
                              <ErrorHandling>
                              <UserNotificationMode>2</UserNotificationMode>
                              <CustomErrorMessage/>
                              <OnErrorAction>0</OnErrorAction>
                              <JumpToLabel/>
                              </ErrorHandling>
                              <DialogTitle>Missing information</DialogTitle>
                              <DialogMessage>The Phone # field cannot be blank.</DialogMessage>
                              <Icon>1</Icon>
                              <Variable>%Result%</Variable>
                              <DialogType>0</DialogType>
                              <DefaultButton>0</DefaultButton>
                              </Action>
                              <Action name="RETURN">
                              <Type>207</Type>
                              <Function>1</Function>
                              <DTIndentLevel>1</DTIndentLevel>
                              <Enabled>1</Enabled>
                              <ErrorHandling>
                              <UserNotificationMode>2</UserNotificationMode>
                              <CustomErrorMessage/>
                              <OnErrorAction>0</OnErrorAction>
                              <JumpToLabel/>
                              </ErrorHandling>
                              </Action>
                              <Action name="END IF">
                              <Type>201</Type>
                              <Function>1</Function>
                              <DTIndentLevel>0</DTIndentLevel>
                              <Enabled>1</Enabled>
                              <ErrorHandling>
                              <UserNotificationMode>2</UserNotificationMode>
                              <CustomErrorMessage/>
                              <OnErrorAction>0</OnErrorAction>
                              <JumpToLabel/>
                              </ErrorHandling>
                              </Action>
                              <Action name="IF">
                              <Type>200</Type>
                              <Function>1</Function>
                              <DTIndentLevel>0</DTIndentLevel>
                              <Enabled>1</Enabled>
                              <ErrorHandling>
                              <UserNotificationMode>2</UserNotificationMode>
                              <CustomErrorMessage/>
                              <OnErrorAction>0</OnErrorAction>
                              <JumpToLabel/>
                              </ErrorHandling>
                              <Condition>%email% = ""</Condition>
                              </Action>
                              <Action name="Message Box">
                              <Type>5</Type>
                              <Function>0</Function>
                              <DTIndentLevel>1</DTIndentLevel>
                              <Enabled>1</Enabled>
                              <ErrorHandling>
                              <UserNotificationMode>2</UserNotificationMode>
                              <CustomErrorMessage/>
                              <OnErrorAction>0</OnErrorAction>
                              <JumpToLabel/>
                              </ErrorHandling>
                              <DialogTitle>Missing information</DialogTitle>
                              <DialogMessage>The E-mail field cannot be blank.</DialogMessage>
                              <Icon>1</Icon>
                              <Variable>%Result%</Variable>
                              <DialogType>0</DialogType>
                              <DefaultButton>0</DefaultButton>
                              </Action>
                              <Action name="RETURN">
                              <Type>207</Type>
                              <Function>1</Function>
                              <DTIndentLevel>1</DTIndentLevel>
                              <Enabled>1</Enabled>
                              <ErrorHandling>
                              <UserNotificationMode>2</UserNotificationMode>
                              <CustomErrorMessage/>
                              <OnErrorAction>0</OnErrorAction>
                              <JumpToLabel/>
                              </ErrorHandling>
                              </Action>
                              <Action name="END IF">
                              <Type>201</Type>
                              <Function>1</Function>
                              <DTIndentLevel>0</DTIndentLevel>
                              <Enabled>1</Enabled>
                              <ErrorHandling>
                              <UserNotificationMode>2</UserNotificationMode>
                              <CustomErrorMessage/>
                              <OnErrorAction>0</OnErrorAction>
                              <JumpToLabel/>
                              </ErrorHandling>
                              </Action>
                              <Action name="IF">
                              <Type>200</Type>
                              <Function>1</Function>
                              <DTIndentLevel>0</DTIndentLevel>
                              <Enabled>1</Enabled>
                              <ErrorHandling>
                              <UserNotificationMode>2</UserNotificationMode>
                              <CustomErrorMessage/>
                              <OnErrorAction>0</OnErrorAction>
                              <JumpToLabel/>
                              </ErrorHandling>
                              <Condition>%years% = ""</Condition>
                              </Action>
                              <Action name="Message Box">
                              <Type>5</Type>
                              <Function>0</Function>
                              <DTIndentLevel>1</DTIndentLevel>
                              <Enabled>1</Enabled>
                              <ErrorHandling>
                              <UserNotificationMode>2</UserNotificationMode>
                              <CustomErrorMessage/>
                              <OnErrorAction>0</OnErrorAction>
                              <JumpToLabel/>
                              </ErrorHandling>
                              <DialogTitle>Missing information</DialogTitle>
                              <DialogMessage>The Years in Business field cannot be blank.</DialogMessage>
                              <Icon>1</Icon>
                              <Variable>%Result%</Variable>
                              <DialogType>0</DialogType>
                              <DefaultButton>0</DefaultButton>
                              </Action>
                              <Action name="RETURN">
                              <Type>207</Type>
                              <Function>1</Function>
                              <DTIndentLevel>1</DTIndentLevel>
                              <Enabled>1</Enabled>
                              <ErrorHandling>
                              <UserNotificationMode>2</UserNotificationMode>
                              <CustomErrorMessage/>
                              <OnErrorAction>0</OnErrorAction>
                              <JumpToLabel/>
                              </ErrorHandling>
                              </Action>
                              <Action name="END IF">
                              <Type>201</Type>
                              <Function>1</Function>
                              <DTIndentLevel>0</DTIndentLevel>
                              <Enabled>1</Enabled>
                              <ErrorHandling>
                              <UserNotificationMode>2</UserNotificationMode>
                              <CustomErrorMessage/>
                              <OnErrorAction>0</OnErrorAction>
                              <JumpToLabel/>
                              </ErrorHandling>
                              </Action>
                              <Action name="IF">
                              <Type>200</Type>
                              <Function>1</Function>
                              <DTIndentLevel>0</DTIndentLevel>
                              <Enabled>1</Enabled>
                              <ErrorHandling>
                              <UserNotificationMode>2</UserNotificationMode>
                              <CustomErrorMessage/>
                              <OnErrorAction>0</OnErrorAction>
                              <JumpToLabel/>
                              </ErrorHandling>
                              <Condition>%phone% = "(###) ###-####"</Condition>
                              </Action>
                              <Action name="Message Box">
                              <Type>5</Type>
                              <Function>0</Function>
                              <DTIndentLevel>1</DTIndentLevel>
                              <Enabled>1</Enabled>
                              <ErrorHandling>
                              <UserNotificationMode>2</UserNotificationMode>
                              <CustomErrorMessage/>
                              <OnErrorAction>0</OnErrorAction>
                              <JumpToLabel/>
                              </ErrorHandling>
                              <DialogTitle>Missing information</DialogTitle>
                              <DialogMessage>The phone field cannot be blank.</DialogMessage>
                              <Icon>1</Icon>
                              <Variable>%Result%</Variable>
                              <DialogType>0</DialogType>
                              <DefaultButton>0</DefaultButton>
                              </Action>
                              <Action name="RETURN">
                              <Type>207</Type>
                              <Function>1</Function>
                              <DTIndentLevel>1</DTIndentLevel>
                              <Enabled>1</Enabled>
                              <ErrorHandling>
                              <UserNotificationMode>2</UserNotificationMode>
                              <CustomErrorMessage/>
                              <OnErrorAction>0</OnErrorAction>
                              <JumpToLabel/>
                              </ErrorHandling>
                              </Action>
                              <Action name="END IF">
                              <Type>201</Type>
                              <Function>1</Function>
                              <DTIndentLevel>0</DTIndentLevel>
                              <Enabled>1</Enabled>
                              <ErrorHandling>
                              <UserNotificationMode>2</UserNotificationMode>
                              <CustomErrorMessage/>
                              <OnErrorAction>0</OnErrorAction>
                              <JumpToLabel/>
                              </ErrorHandling>
                              </Action>
                              <Action name="Set Value">
                              <Type>6</Type>
                              <Function>0</Function>
                              <DTIndentLevel>0</DTIndentLevel>
                              <Enabled>0</Enabled>
                              <ErrorHandling>
                              <UserNotificationMode>2</UserNotificationMode>
                              <CustomErrorMessage/>
                              <OnErrorAction>0</OnErrorAction>
                              <JumpToLabel/>
                              </ErrorHandling>
                              <Variable>%fulladdress%</Variable>
                              <Value>%name% + " " +
                              %salonaddress% + " " +
                              %address2% + " " +
                              %city% + " " +
                              %state% + " " +
                              %zip% + " " +
                              %phone% + " " +
                              %email% + " " +
                              %years% + " " +
                              %salonaddress%</Value>
                              <Evaluate>1</Evaluate>
                              </Action>
                              <Action name="Message Box">
                              <Type>5</Type>
                              <Function>0</Function>
                              <DTIndentLevel>0</DTIndentLevel>
                              <Enabled>0</Enabled>
                              <ErrorHandling>
                              <UserNotificationMode>2</UserNotificationMode>
                              <CustomErrorMessage/>
                              <OnErrorAction>0</OnErrorAction>
                              <JumpToLabel/>
                              </ErrorHandling>
                              <DialogTitle>Title</DialogTitle>
                              <DialogMessage>%fulladdress%</DialogMessage>
                              <Icon>3</Icon>
                              <Variable>%Result%</Variable>
                              <DialogType>0</DialogType>
                              <DefaultButton>0</DefaultButton>
                              </Action>
                              <Action name="Open">
                              <Type>7</Type>
                              <Function>0</Function>
                              <DTIndentLevel>0</DTIndentLevel>
                              <Enabled>1</Enabled>
                              <ErrorHandling>
                              <UserNotificationMode>2</UserNotificationMode>
                              <CustomErrorMessage/>
                              <OnErrorAction>0</OnErrorAction>
                              <JumpToLabel/>
                              </ErrorHandling>
                              <FileName>mailto:[email protected]?Subject=Enter% 20me%20for%20the%20free%20bed%20give-a%20-way&amp;amp;Body=%name%%0D%0A%salonname%%0D%0A%sal onaddress%%0D%0A%address2%%0D%0A%city%%0D%0A%state %%0D%0A%zip%%0D%0A%phone%%0D%0A%email%%0D%0A%years %</FileName>
                              <Verb>open</Verb>
                              <WorkingDir/>
                              <RunMode>0</RunMode>
                              </Action>
                              <Action name="Open">
                              <Type>7</Type>
                              <Function>0</Function>
                              <DTIndentLevel>0</DTIndentLevel>
                              <Enabled>0</Enabled>
                              <ErrorHandling>
                              <UserNotificationMode>2</UserNotificationMode>
                              <CustomErrorMessage/>
                              <OnErrorAction>0</OnErrorAction>
                              <JumpToLabel/>
                              </ErrorHandling>
                              <FileName>mailto:[email protected]?Subject=addres s%20information%20from%20%name%&amp;amp;Body=%name %%0D%0A%addy1%%0D%0A%addy2%%0D%0A%citystate%%0D%0A %phone%</FileName>
                              <Verb>open</Verb>
                              <WorkingDir/>
                              <RunMode>0</RunMode>
                              </Action>
                              <Action name="Set Text">
                              <Type>77</Type>
                              <Function>0</Function>
                              <DTIndentLevel>0</DTIndentLevel>
                              <Enabled>1</Enabled>
                              <ErrorHandling>
                              <UserNotificationMode>2</UserNotificationMode>
                              <CustomErrorMessage/>
                              <OnErrorAction>0</OnErrorAction>
                              <JumpToLabel/>
                              </ErrorHandling>
                              <ObjectName>name</ObjectName>
                              <Text/>
                              </Action>
                              <Action name="Set Text">
                              <Type>77</Type>
                              <Function>0</Function>
                              <DTIndentLevel>0</DTIndentLevel>
                              <Enabled>1</Enabled>
                              <ErrorHandling>
                              <UserNotificationMode>2</UserNotificationMode>
                              <CustomErrorMessage/>
                              <OnErrorAction>0</OnErrorAction>
                              <JumpToLabel/>
                              </ErrorHandling>
                              <ObjectName>salon name</ObjectName>
                              <Text/>
                              </Action>
                              <Action name="Set Text">
                              <Type>77</Type>
                              <Function>0</Function>
                              <DTIndentLevel>0</DTIndentLevel>
                              <Enabled>1</Enabled>
                              <ErrorHandling>
                              <UserNotificationMode>2</UserNotificationMode>
                              <CustomErrorMessage/>
                              <OnErrorAction>0</OnErrorAction>
                              <JumpToLabel/>
                              </ErrorHandling>
                              <ObjectName>salon address</ObjectName>
                              <Text/>
                              </Action>
                              <Action name="Set Text">
                              <Type>77</Type>
                              <Function>0</Function>
                              <DTIndentLevel>0</DTIndentLevel>
                              <Enabled>1</Enabled>
                              <ErrorHandling>
                              <UserNotificationMode>2</UserNotificationMode>
                              <CustomErrorMessage/>
                              <OnErrorAction>0</OnErrorAction>
                              <JumpToLabel/>
                              </ErrorHandling>
                              <ObjectName>address 2</ObjectName>
                              <Text/>
                              </Action>
                              <Action name="Set Text">
                              <Type>77</Type>
                              <Function>0</Function>
                              <DTIndentLevel>0</DTIndentLevel>
                              <Enabled>1</Enabled>
                              <ErrorHandling>
                              <UserNotificationMode>2</UserNotificationMode>
                              <CustomErrorMessage/>
                              <OnErrorAction>0</OnErrorAction>
                              <JumpToLabel/>
                              </ErrorHandling>
                              <ObjectName>city</ObjectName>
                              <Text/>
                              </Action>
                              <Action name="Set Text">
                              <Type>77</Type>
                              <Function>0</Function>
                              <DTIndentLevel>0</DTIndentLevel>
                              <Enabled>1</Enabled>
                              <ErrorHandling>
                              <UserNotificationMode>2</UserNotificationMode>
                              <CustomErrorMessage/>
                              <OnErrorAction>0</OnErrorAction>
                              <JumpToLabel/>
                              </ErrorHandling>
                              <ObjectName>state</ObjectName>
                              <Text/>
                              </Action>
                              <Action name="Set Text">
                              <Type>77</Type>
                              <Function>0</Function>
                              <DTIndentLevel>0</DTIndentLevel>
                              <Enabled>1</Enabled>
                              <ErrorHandling>
                              <UserNotificationMode>2</UserNotificationMode>
                              <CustomErrorMessage/>
                              <OnErrorAction>0</OnErrorAction>
                              <JumpToLabel/>
                              </ErrorHandling>
                              <ObjectName>zip</ObjectName>
                              <Text/>
                              </Action>
                              <Action name="Set Text">
                              <Type>77</Type>
                              <Function>0</Function>
                              <DTIndentLevel>0</DTIndentLevel>
                              <Enabled>1</Enabled>
                              <ErrorHandling>
                              <UserNotificationMode>2</UserNotificationMode>
                              <CustomErrorMessage/>
                              <OnErrorAction>0</OnErrorAction>
                              <JumpToLabel/>
                              </ErrorHandling>
                              <ObjectName>phone</ObjectName>
                              <Text/>
                              </Action>
                              <Action name="Set Text">
                              <Type>77</Type>
                              <Function>0</Function>
                              <DTIndentLevel>0</DTIndentLevel>
                              <Enabled>1</Enabled>
                              <ErrorHandling>
                              <UserNotificationMode>2</UserNotificationMode>
                              <CustomErrorMessage/>
                              <OnErrorAction>0</OnErrorAction>
                              <JumpToLabel/>
                              </ErrorHandling>
                              <ObjectName>email</ObjectName>
                              <Text/>
                              </Action>
                              <Action name="Set Text">
                              <Type>77</Type>
                              <Function>0</Function>
                              <DTIndentLevel>0</DTIndentLevel>
                              <Enabled>1</Enabled>
                              <ErrorHandling>
                              <UserNotificationMode>2</UserNotificationMode>
                              <CustomErrorMessage/>
                              <OnErrorAction>0</OnErrorAction>
                              <JumpToLabel/>
                              </ErrorHandling>
                              <ObjectName>years</ObjectName>
                              <Text/>
                              </Action>
                              </IR_ACTIONS_LIST>

                              Comment

                              Working...
                              X
                              😀
                              🥰
                              🤢
                              😎
                              😡
                              👍
                              👎