Problem in emailing forms

I am using GoLive 6 with Mac OS X.4. I have created a simple form, and wish to send it (at present) to myself. The page is found at
http://users.picknowl.com.au/~nsbaptist/AATest-return.html
The return email of the completed form picks up only the first text field, and not the rest.
I'd be grateful if someone pointed out my obvious error! Thanks.
Paul S.

Many thanks for your replies Steve and Tony. I had already looked at the Natemail URL.
I had decided to go with the simple inferior method of emailing, because our email addresses are already plastered all over our church web pages, so one extra reference seemed unlikely to make much difference! Also, it is easiest.
I have made it work using Tony's helpful hint. This works fine.
My only question is: how on earth was I supposed to think of this?!
Thanks again yo you both.
Paul

Similar Messages

  • Problems with email form in Flex

    I've been scouring the web for an email form in Flex for several days now and am stuck because of what I think are these several areas.
    Setting up the back end - I am running wamp server 2.0 on my devolping machine and have a Windows 2008 Server with PHP set up at my disposal as well.  Most of the tutorials I've come across don't go over these configurations, I've figured a few things out, but am still rather in the dark and am unsure what I've learned is accurate.  Here are a couple questions:
    How do I set up the Flex Build Path.  For example I have a folder created in the www directory of the wamp server named mailform where I tell the HTTPService's url property to post to a php file named 'mail.php'  So would this be correct?
    <mx:HTTPService 
    id="emailService" url="http://localhost/mailform/mail.php"
    method="POST" resultFormat="xml" result="emailResult()" useProxy="false"/>  
    Do I need to change values in wamp's php.ini file.  From what I've found smtp_server, smtp_port, and php_openssl need to be changed.
    Do I need to open up a port on my router (25)?
    Would I need to use an alternative app like PEAR: Mail or phpMailer.  For testing purposes I'm using my gmail account, the client's site this is for uses a bellsouth.net account.
    2. Are problems still persisting with Flash Player 10, like illustrated in this thread: http://www.actionscript.org/forums/showthread.php3?t=196454  As msfx pointed every email form example I've downloaded, there've been many, I have not been able to get to work.  Yet as you can tell there are probably other issues I need to take care of as well.
    Please point me in any direction(s) that will help, am open to all suggestions, would just like to get a working email form done in flex so I can finish the client's site.  Thank you.

    "italiantometa" <[email protected]> wrote in
    message
    news:gk5em7$3s7$[email protected]..
    > Hi Amy,
    >
    > This isn?t spam and I hope you get the email. The tilt
    viewer is a
    > component
    > that allows the images on the screen to be moved about
    from a central
    > point in
    > a see-saw fashion ? kind of like a flat panel can be
    tilted
    > up/down/left/right.
    > I?m looking for someone with FLEX, AS2 and AS3
    experience to take a look
    > at
    > this and fix it for us. Interested?
    Is this a Flash component or a Flex component? What's the
    issue?

  • Problem with email form

    I am trying to work through the book Dreamweaver CS3 with
    ASP, Coldfusion and PHP and I can't get the form to email in
    chapter 5 to work. I get the following error message:
    Error Type:
    CDO.Message.1 (0x8004020D)
    At least one of the From or Sender fields is required, and
    neither was found.
    As far as I can see I have both the from and send fields.
    Below is my code:
    <%
    theSchema="
    http://schemas.microsoft.com/cdo/configuration/"
    Set cdoConfig=server.CreateObject("CDO.Configuration")
    cdoConfig.Fields.Item(theSchema & "sendusing")= 2
    cdoConfig.Fields.Item(theSchema &
    "smtpserver")="smtp.att.yahoo.com"
    cdoConfig.Fields.Update
    set cdoMessage=Server.CreateObject("CDO.Message")
    cdoMessage.Configuration=cdoConfig
    cdoMessage.From=Request.Form("[email protected]")
    cdoMessage.To="[email protected]"
    cdoMessage.Subject=Request.Form("subject")
    cdoMessage.TextBody=Request.Form("messageBody")
    cdoMessage.Send
    Set cdoMessage=Nothing
    Set cdoConfig=Nothing
    %>
    Can anyone see my errors.

    cdoMessage.From=Request.Form("[email protected]")
    maybe should be -
    cdoMessage.From="[email protected]"
    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
    ==================
    "Charles67" <[email protected]> wrote in
    message
    news:[email protected]...
    >I am trying to work through the book Dreamweaver CS3 with
    ASP, Coldfusion
    >and
    > PHP and I can't get the form to email in chapter 5 to
    work. I get the
    > following error message:
    >
    > Error Type:
    > CDO.Message.1 (0x8004020D)
    > At least one of the From or Sender fields is required,
    and neither was
    > found.
    >
    > As far as I can see I have both the from and send
    fields. Below is my
    > code:
    >
    > <%
    > theSchema="
    http://schemas.microsoft.com/cdo/configuration/"
    > Set cdoConfig=server.CreateObject("CDO.Configuration")
    > cdoConfig.Fields.Item(theSchema & "sendusing")= 2
    > cdoConfig.Fields.Item(theSchema &
    "smtpserver")="smtp.att.yahoo.com"
    > cdoConfig.Fields.Update
    > set cdoMessage=Server.CreateObject("CDO.Message")
    > cdoMessage.Configuration=cdoConfig
    >
    >
    cdoMessage.From=Request.Form("[email protected]")
    > cdoMessage.To="[email protected]"
    > cdoMessage.Subject=Request.Form("subject")
    > cdoMessage.TextBody=Request.Form("messageBody")
    > cdoMessage.Send
    >
    > Set cdoMessage=Nothing
    > Set cdoConfig=Nothing
    > %>
    > Can anyone see my errors.
    >
    >
    > <%
    > theSchema="
    http://schemas.microsoft.com/cdo/configuration/"
    > Set cdoConfig=server.CreateObject("CDO.Configuration")
    > cdoConfig.Fields.Item(theSchema & "sendusing")= 2
    > cdoConfig.Fields.Item(theSchema &
    "smtpserver")="smtp.att.yahoo.com"
    > cdoConfig.Fields.Update
    > set cdoMessage=Server.CreateObject("CDO.Message")
    > cdoMessage.Configuration=cdoConfig
    >
    >
    cdoMessage.From=Request.Form("[email protected]")
    > cdoMessage.To="[email protected]"
    > cdoMessage.Subject=Request.Form("subject")
    > cdoMessage.TextBody=Request.Form("messageBody")
    > cdoMessage.Send
    >
    > Set cdoMessage=Nothing
    > Set cdoConfig=Nothing
    > %>
    >

  • Email form problems

    I am trying to get a simple as2 email flash cs3 form to work
    on our goDaddy hosted server. They are not sure how to help. Their
    advice is to change the extension from .php to .php5. Does anyone
    have as2 Flash script and php script that will make a email form
    work on goDaddy? I am posting my code for both that does not work
    now.

    Hi kglad. One. not sure how to "use the onData event of
    receiveLoad and see what error message you're getting." Sorry,
    don't use as2 very much. Two. I am doing all this on the same
    domain, so there should not be any security issues.
    I asked goDaddy what the problem might be and this was their
    (snarky) reply;
    "As you have already been informed, when using a flash form
    on your site, in the scripting for the form you will need to
    reference our SMTP server at relay-hosting.secureserver.net and
    this server does not require authentication."
    They gave me this code a couple of days ago and told me to
    stick this into my PHP code. It didn't help.
    This is beyond me I am afraid.

  • Contact / email form problem

    I am adding a contact / forward email form to a website I am building and ran into a snag. I have the Adobe Classroom in a book for AS3, and in chapter 13 it gives me the code, along with a start file and completed file. The problem is, the completed file doesn't work. The code links up to a web address that has the PHP file that generates the email. Has anyone else had a problem with this? I have access to a server running PHP and uploaded it there and redirected the AS code in the example and still nothing. And yes, I have checked the book website for updates. Relevant code follows.
    Thanks,
    Jeff
    var variables:URLVariables = new URLVariables();
    var mailAddress:URLRequest = new URLRequest("http://www.turnkeycreations.com/clients/tgc/email.php");
    name_txt.tabIndex = 1;
    email_txt.tabIndex = 2;
    subject_txt.tabIndex = 3;
    note_txt.tabIndex = 4;
    print_btn.tabIndex = 5;
    send_btn.addEventListener(MouseEvent.CLICK, onSubmit);
    function onSubmit(e:Event):void {
        variables.sName = name_txt.text;
        variables.sEmail = email_txt.text;
        variables.sMessage =variables.sName + " has sent this note:" + "\n\n"+note_txt.text;
        variables.sSubject = subject_txt.text;
        mailAddress.data = variables;
        mailAddress.method = URLRequestMethod.POST;
        sendToURL(mailAddress);
        feedback_txt.text = "Your mail has been sent";
    PHP:
    <?php
    $sendTo = $_POST["sEmail"];
    $subject = $_POST["sSubject"];
    $headers = "From: " . $_POST["sName"] . "<" . $_POST["sEmail"] .">\r\n";
    $headers .= "Reply-To: " . $_POST["sEmail"] . "\r\n";
    $headers .= "Return-path: " . $_POST["sEmail"];
    $message = $_POST["sMessage"];
    mail($sendTo, $subject, $message, $headers);
    ?>

    I guess technically it does work, I sent it to another address to test it again. The problem is,
    the address I used first is (not real) [email protected]  .  It has a period before the first and last name. Could this be the problem? If so, how do I fix?

  • Spry, Mousover-Buttons and Email-Form problem. Site is 100% error free.

    My site: http://www.wientjesvoegwerk.nl/
    Its xhtml1.0 and css validated.
    I have a few problems however.
    This was how i did it first:
    <li class="TabbedPanelsTab" tabindex="0">
              <style>#Home a{display:block;color:transparent;} #Home a:hover{background-position:left bottom;}a#Home {display:none}</style>
              <table id="Home" width=0 cellpadding=0 cellspacing=0 border=0><tr>
              <td style="padding-right:0px" title ="Home">
            <a href="javascript:TabbedPanels1.showPanel(1);" title="Home" style="background-image:url(../Buttons/Home.png);width:172px;height:75px;display:block;"><br/></a></td>
              </tr></table>
              </li>
    As you see i use Spry tabbed panels. In a tab i put code wich shows a button with mouse over.
    Changing the code so my site would be 100% validated resulted in a broken button.
    The button works but loses its mouseover function.
    This is it now:
    <li class="TabbedPanelsTab">
            <table id="THome" >
              <tr>
                <td style="padding-right:0px" title ="Home"><a href="javascript:TabbedPanels1.showPanel(1);" title="Home" style="background-image:url(Buttons/Home.png);width:172px;height:75px;display:block;"><br/>
                </a></td>
              </tr>
            </table>
          </li>
    I tried everything. When using the code above the validator has errors, when using the one below, i lose mouseover...
    The validator says <style> tag isnt allowed.
    How do i solve this problem? I hope someone can help me out...
    Also i have another problem.
    I searched for safe email forms and hit this site: http://www.webbyzone.com/2010/01/10/make-xajax-phpmailer-contact-forms-work/
    It looks pro but i cant get it working. A little help would be appreciated...
    And i cant get my footer down to the bottom since i used Spry. Any help here also would be nice.
    xhtml site:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
         <meta http-equiv="Content-type" content="text/html; charset=UTF-8" />
         <title>Wientjes Voegwerk &amp; Renovatie - Home</title>
        <script src="SpryAssets/SpryTabbedPanels.js" type="text/javascript"></script>
        <link href="CSS/Style.css" rel="stylesheet" type="text/css" />
         <meta http-equiv="Content-Language" content="NL" />
         <meta http-equiv="imagetoolbar" content="no" />
         <meta name="MSSmartTagsPreventParsing" content="true" />
        <meta name="description" content="Wientjes Voegwerk en Renovatie is een voeg- en renovatiebedrijf gespecialiseerd in gevelrenovatie. Dagelijkse werkzaamheden zijn het voegen van nieuwbouwwerk, en alle voorkomende vormen van gevelrenovatie. Ik geef uw woning, garage of schoorsteen de aandacht die het verdient en ben trots op het resultaat van mijn werk!"/>
        <meta name="keywords" content="Voegwerk, Renovatie, Reinigen, Impregneren, Muur, Voegen, Steen, Woning, Garage, Schoorsteen, Bedrijf, Gevel, Wientjes, Uitslijten, Kappen, Fundering, Vorstschade, Metselen, Metselwerk, Vocht" />
        <meta name="author" content="Rob Nijlaan" />
    </head>
    <body>
    <div id="WContainer">
           <div id="WHeader" align="center">
             <img src="Pictures/VoegenRenLos.png" width="540" height="58" alt="Voeg en Renovatiebedrijf" /><br />
        <img src="Pictures/WientLogo.png" width="600" height="136" alt="Wientjes Voegwerk &amp; Renovatie" /></div>
         <div id="TabbedPanels1" class="VTabbedPanels">
           <ul class="TabbedPanelsTabGroup">
           <li class="TabbedPanelsTab">
            <table id="THome" >
              <tr>
                <td style="padding-right:0px" title ="Home"><a href="javascript:TabbedPanels1.showPanel(1);" title="Home" style="background-image:url(Buttons/Home.png);width:172px;height:75px;display:block;"><br/>
                </a></td>
              </tr>
            </table>
          </li>
          <li class="TabbedPanelsTab" >
            <table id="TInfo" >
              <tr>
                <td style="padding-right:0px" title ="Info"><a href="javascript:TabbedPanels1.showPanel(2);" title="Info" style="background-image:url(Buttons/Info.png);width:172px;height:75px;display:block;"><br/>
                </a></td>
              </tr>
            </table>
          </li>
          <li class="TabbedPanelsTab" >
            <table id="TGallerij" >
              <tr>
                <td style="padding-right:0px" title ="Gallerij"><a href="javascript:TabbedPanels1.showPanel(3);" title="Gallerij" style="background-image:url(Buttons/Gallerij.png);width:172px;height:75px;display:block;"><br/>
                </a></td>
              </tr>
            </table>
          </li>
          <li class="TabbedPanelsTab" >
            <table id="TContact" >
              <tr>
                <td style="padding-right:0px" title ="Contact"><a href="javascript:TabbedPanels1.showPanel(4);" title="Contact" style="background-image:url(Buttons/Contact.png);width:172px;height:75px;display:block;"><br/>
                </a></td>
              </tr>
            </table>
          </li>
          <li>
            <p class="footer"><br />
              <br />
              <br />
              <br />
              <br />
              Wientjes Voegwerk en Renovatie<br />
              <br />
              tel; 06 - 221 464 28<br />
              <br />
              kvk; <br />
              <br />
              <a href="http://jigsaw.w3.org/css-validator/check/referer"> <img style="border:0;width:88px;height:31px"
            src="http://jigsaw.w3.org/css-validator/images/vcss-blue"
            alt="Valide CSS!" /> </a><br />
            <a href="http://validator.w3.org/check?uri=referer"><img
            src="http://www.w3.org/Icons/valid-xhtml10-blue"
            alt="Valid XHTML 1.0 Transitional" height="31" width="88" /></a> </p>
           </li>
          </ul>
           <div class="TabbedPanelsContentGroup">
    <div class="TabbedPanelsContent" id="Home">
                       <h1>Welkom Bij Wientjes Voegwerk en Renovatie!</h1>
          <p>Wientjes Voegwerk en Renovatie is een voeg- en renovatiebedrijf gespecialiseerd in gevelrenovatie.<br />Dagelijkse werkzaamheden zijn het voegen van nieuwbouwwerk, en alle voorkomende vormen van gevelrenovatie.<br />Ik geef uw woning, garage of schoorsteen de aandacht die het verdient en ben trots op het resultaat van mijn werk!<br /><br />Wientjes, J </p>
          <h2>Voegen/Renovatie/Reinigen &amp; Impregneren. </h2>
    <table border="0" align="right"><tr><td>
    <a href="Foto/Foto's telefoon1 075.jpg"><img src="Foto/Foto's telefoon1 075.jpg" alt="Muur met Steiger" width="379" height="354" align="right" />
    </a></td></tr><tr><td><center>klik op de foto voor een groter voorbeeld</center></td></tr></table>
      <p>Vaak wordt er bij het kopen van een woning weinig aandacht besteed aan het voegwerk. Er wordt alleen gekeken naar hoe een woning is gebouwd.<br />Een voeg bepaalt echter wel het aanzicht van een woning. Van een goed aangebrachte voeg heeft u uiteraard veel langer plezier. <br />Renovatie bestaat voornamelijk uit het uitslijpen of kappen van het oude voegwerk. Waar nodig het verwijderen van scheuren die zijn ontstaan door:</p>
      <ul>
        <li>
          <p>
            Verzakking van de fundering
          </p>
        </li>
        <li>
          <p>
            Slecht voegwerk
          </p>
        </li>
        <li>
          <p>
            Vorstschade
          </p>
        </li>
        <li>
          <p>
            Doorhangen of ontbreken van ...
          </p>
        </li>
      </ul>
      <p>Bij gevelvervuiling van uw woning kunnen er problemen ontstaan die het wooncomfort negatief kunnen beïnvloeden.<br />Wanneer de voeg is aangetast of het metselwerk is door vorstschade beschadigd, kunnen er vochtproblemen in huis ontstaan.<br />Mos en alg hechten zich goed aan beschadigde stenen en voegwerk. <br /><br />Door middel van impregnering wordt een woning waterafstotend gemaakt.<br />Dit betekent dat het voeg- en metstelwerk jarenlang wordt beschermd tegen weersinvloeden. <br />Ook is impregnering beter voor de isolatie van de woning.</p>
    <p align="left"><img src="Pictures/TelnrLos.png" width="525" height="49" align="top" alt="Telefoonnummer"/></p>
                             </div>
                       <div class="TabbedPanelsContent" id="Info">
                    test2
                       </div>
                       <div class="TabbedPanelsContent" id="Gallerij">
                    test3
                       </div>
                            <div class="TabbedPanelsContent" id="Contact">
                    <?php echo '<div id="contact_result">'.$form.'</div>'; ?>
                    </div>
        </div>
        </div>
        <script type="text/javascript">
    <!--
    var TabbedPanels1 = new Spry.Widget.TabbedPanels("TabbedPanels1");
    //-->
    </script>
         <div id="WFooter" align="center">
             <p class="footer">Wientjes Voegwerk &amp; Renovatie     ,    03- '02         »        Site by ;    <b>Rob Nijlaan</b>        »        Problemen of vragen over deze site?    -    <b><a href="mailto:[email protected]">[email protected]</a></b></p>
         </div>
    </div>
    </body>
    </html>
    CSS script:
    @charset "utf-8";
    /* CSS Document */
    html,body {
         height:100%; /* needed for container min-height */
         width:100%;
         background: #FFFFFF url(../Pictures/Background.png) no-repeat center;
         color:#000;
    h1{
    font-family: "Trebuchet MS", verdana, arial, helvetica, sans-serif; color: #595999;
    font-weight: bold;
    font-style:italic;
    font-size: 230%;
    h2{
    font-family: "Trebuchet MS", verdana, arial, helvetica, sans-serif; color: #595999;
    font-weight: bold;
    font-size: 180%;
    p{
    font-family: "Verdana", verdana, arial, helvetica, sans-serif;
    font-size: 100%;
    .footer{
    font-family: "Trebuchet MS", verdana, arial, helvetica, sans-serif;
    font-size: 70%;
    text-align:center;
    #WContainer{
         position:absolute;
         margin:0 auto;
         width:80%;
         background:none;
         height:auto;
         height:100%;
         min-height:100%;
         margin-left: 10%;
         margin-right: 10%;
    #WHeader{
         height: 195px;
         width:100%;
         margin-bottom: 10px;
         margin-left: 0px;
         margin-right: 10px;
    .VTabbedPanels .TabbedPanelsTabGroup {
         float: left;
         width: 172px;
         height: 75px;
         background-color: #FFF;
         position: relative;
         border-top: solid 0px #FFF;
         border-right: solid 0px #FFF;
         border-left: solid 0px #FFF;
         border-bottom: solid 0px #FFF;
    .VTabbedPanels .TabbedPanelsTab {
         float: none;
         margin: 0px;
         border-top: none;
         border-left: none;
         border-right: none;
    .VTabbedPanels .TabbedPanelsContentGroup {
         margin-left: 220px;
         width: auto;
         height: auto;
         min-height:50%;
         max-width:83%;
         min-width:500px;
         padding: 20px 20px 20px 20px;
         border-left: solid 1px #999;
         border-bottom: solid 2px #999;
         border-top: solid 1px #999;
         border-right: solid 2px #999;
    #WFooter{
         clear:both;
         height: 30px;
         margin-top:1px;
    ul
    list-style-type: none;
    padding: 0px;
    margin: 0px;
    li
    list-style-type: none;
    padding: 0px;
    margin: 0px;

    I finnaly knew what was wrong with the buttons.
    This is my renewed code:
    HTML:
    <li class="TabbedPanelsTab">
         <table class="Button">
              <tr>
                   <td style="padding-right:0px" title ="Home">
                        <a href="javascript:TabbedPanels1.showPanel(1);" title="Home" style="background-image:url(../Buttons/Home.png);width:172px;height:75px;display:block;"><br /></a>
                   </td>
              </tr>
         </table>
    </li>
    CSS:
    .Button a{display:block;}
    .Button a:hover{background-position:left bottom;}
    a.Button {display:none}
    My only problem is the Footer that is in top instead bottom.
    And the mail form from: http://www.webbyzone.com/2010/01/10/make-xajax-phpmailer-contact-forms-work/
    wich wont work so far...

  • Problems with contact email form

    Hi there,
    So I've been having lots of problems with getting an email form to work in my flash website.
    The contact email form I've been attemping to get to work can be found here:
    http://www.webdesignmo.com/blog/2008/08/14/flash-contact-form-in-actionscript-3/
    When I start a new flash movie from scratch and follow the instructions on the site, everything works great. However, when I try to create this form within a movie symbol within my current flash site, nothing works at all. I've tried placing the submit button within the movie symbol and without and neither works. I guess my question is, why would this happen? In which circumstances would placing a form like this inside of a movie prevent the form from functioning? For instance, when I tes tthe movie, fill out the form and press the submit button, nothing happens.
    Can I get some advice for whether I need to rethink implementing this form into a current flash video and what things I should check for?
    Thanks so much!
    Using CS3 btw.

    you probably have path problems.  use the trace() function to help debug your flash.

  • PDF Attachment problem in Adobe form and send mail is not working

    Dear Experts,
                         Recently i'm facing a problem regarding Adobe form PDF attachment and sending an e-mail along with the PDF attachment to customer mail id.But when i execute the RFC Function module, in customer side no mail is comming. And when i check the transaction SBWP then i found that the PDF attachment hold only 1KB of data which is not right.For that i'm sending my code which i was declared in my program.Can anybody please help me to overcome this problem?
    Warm Regards,
    sameek.
    CLASS cl_bcs DEFINITION LOAD.
      DATA:
      lo_send_request TYPE REF TO cl_bcs VALUE IS INITIAL.
      lo_send_request = cl_bcs=>create_persistent( ).
      data: t_att_content_hex type SOLIX_TAB.
      DATA: lx_document_bcs TYPE REF TO cx_document_bcs VALUE IS INITIAL.
      DATA: lo_sender TYPE REF TO if_sender_bcs VALUE IS INITIAL,
            l_send type ADR6-SMTP_ADDR value 'Already provided an e-mail address here'.
      DATA: lo_recipient TYPE REF TO if_recipient_bcs VALUE IS INITIAL.
      DATA: lv_sent_to_all(1) TYPE c VALUE IS INITIAL.
    Message body and subject*
      DATA:
      lt_message_body TYPE bcsy_text VALUE IS INITIAL,
      lo_document TYPE REF TO cl_document_bcs VALUE IS INITIAL.
      APPEND 'Dear,' TO lt_message_body.
      append ' ' to lt_message_body.
      APPEND 'Please fill the attached form and send it back to us.'
      TO lt_message_body.
      append ' ' to lt_message_body.
      APPEND 'Thank You,' TO lt_message_body.
      lo_document = cl_document_bcs=>create_document(
      i_type = 'RAW'
      i_text = lt_message_body
      i_subject = 'Customer Information Form').
      TRY.
          lo_document->add_attachment(
          EXPORTING
          i_attachment_type = 'PDF'
          i_attachment_subject = 'Customer Information Form'
    I_ATTACHMENT_SIZE =*
    I_ATTACHMENT_LANGUAGE = SPACE*
    I_ATT_CONTENT_TEXT =*
    I_ATTACHMENT_HEADER =*
          i_att_content_hex = t_att_content_hex ).
        CATCH cx_document_bcs INTO lx_document_bcs.
      ENDTRY.
    Add attachment*
    Pass the document to send request*
      lo_send_request->set_document( lo_document ).
    Create sender*
      lo_sender = cl_cam_address_bcs=>create_internet_address( l_send ).
    lo_sender = cl_sapuser_bcs=>create( sy-uname ).*
    Set sender*
      lo_send_request->set_sender(
      EXPORTING
      i_sender = lo_sender ).
    Create recipient*
      lo_recipient = cl_sapuser_bcs=>create( sy-uname ).
    lo_recipient = cl_cam_address_bcs=>create_internet_address( l_send ).*
    Set recipient*
      lo_send_request->add_recipient(
      EXPORTING
      i_recipient = lo_recipient
      i_express = 'X' ).
    lo_send_request->add_recipient(*
    EXPORTING*
    i_recipient = lo_recipient*
    i_express = 'X' ).*
    Send email*
      lo_send_request->send(
      EXPORTING
      i_with_error_screen = 'X'
      RECEIVING
      result = lv_sent_to_all ).
      COMMIT WORK.
      message 'The Customer Information form has been emailed to the Employee' type 'I'.

    I am also facing issue with email send .
    apex 4.1.1 oracle 11g
    create or replace procedure email ( p_email  in    varchar2)
    is
        l_workspace_id      number;
        l_subject           varchar2(2000);
        l_body              clob;
        l_body_html         clob;
         l_email varchar2(40);
    begin
        l_workspace_id := apex_util.find_security_group_id (p_workspace => 'xyz');
        apex_util.set_security_group_id (p_security_group_id => l_workspace_id);
    l_email:= p_email;
        l_body := ' ';
        l_subject := 'You have new tasks';
        --if l_email=:P3_CONFIRM_EMAIL_ADDRESS is not null then
       -- email( l_email =>:P3_CONFIRM_EMAIL );
    -- end if;
            l_body_html := '<p />The following tasks have been added.';
         apex_mail.send (
                p_to        => l_email ,
                p_from      => '[email protected]',
                p_body      => l_body,
                p_body_html => l_body_html,
                p_subj      => l_subject );
      APEX_MAIL.PUSH_QUEUE;
    end; I also check the log and queue but both are empty,
    select * from
    apex_mail_queue
    select * from
    apex_mail_log Kindly suggest what to do ?
    I also created a process in apex , which call this procedure and pass the email address entered by user.

  • Please can anyone help with the continuing password rejection problem with email.Ipad and other systems work fine but despite reloading my password on imac it bounces back.Apple store has been visited and I have tried everything they suggest.

    Please can anyone help with the continuing password rejection problem with email on my imac.My Ipad and other systems work fine but despite reloading my password on imac it bounces back.Apple store has been visited and I have tried everything they suggest.

    I use free Yahoo mail webMail access because folders I created in webmail access doesn't get set up in Apple Mail. While I was searching for post about password and keychain issues, I stumbled on several threads that complain about Mail folder issues, so I'm holding off on Apple Mail.
    On the password and keychain issue that your post is all about.  I've been using login keychain to save and automatical fill my login screens for a year or so successfully, with Safari and Chrome. Automatic form fill also works for Facebook login. Unfortunately, about 4 to 6 months ago, automatic password form fill stopped working with Yahoo webmail, while still worked for GMail (Safari and Chrome). I tried deleting the password entry for my two Yahoo email accounts to start fresh, but neither Safari not Chrome will even ask me if I want to save the password. I was so frustrated that I eventually installed the keypassX 0.43 (password manager) that is quite primitive sompare to OS X's keychain (when it works). Probably no surprise to you yet.
    The surprise, to me at least, is that, for whatever reason, password auto form-fill from keychain started working again for Yahoo webmail login on Safari about 5-7 days ago. Still doesn't work on Chrome!
    Two tips I can share, at least with webmail access:
    1. Password is save only for one of my yahoo mail accounts. When I login in with my other yahoo account, I get no prompt to save the password, and form fill doesn't work when I try to log in a second time with my other Yahoo mail account.
    2. On inspection of my login keychain, I see a webform password item saved for my Yahoo account that works with keychain. The name of the password is: login.yahoo.com(MyAccountName1#). When I open the password item and look in the Access Control tab, I see Safari and Chome are listed as allowed to access this password item..
         I also an "Internet password" item with a name of just login.yahoo.com. When I open the the password item, it looks just like the password item created for MyAccountName#1, but the MyAccountName#2 is listed in the Account field. Inside the Access Control tab, no apps are listed in access permission. I added Safari and Chrome to the lists of allowed app, saved the password item.
    Now when I bring up the Yahoo login page(by bookmark) on Safari, form fill fills in MyAccountname#1 for name and the proper password and I can login in. When I change the name to MyAccountName#2, the correct password is retrieved and I can log in! Alas, it still doesn't work on Chrome.
    BTW, I changed the password item type from "Internet password" to "Web Form password" and saw no difference! I also edited the name to be "login.yahoo.com (MyAccountName#2)" to look like the web form password item that works, but it has no effect either.
    From my experimentation, here's my observation:
    1. A Web Form password item is created for the first account name(MyAccountName#1) for login.yahoo.com and typed as Web Form password. When I log in using MyAccountName#2, an Internet Password is created, but no applications are listed as allowed to access the password item, even when the password item was created after just logged in and logged out to yahoo with the account name and password for MyAccountName#2.
    2. Manually adding Safari as an app that is allowed to use the password item works. Doesn't work with Chrome!
    The version of Safari I'm using is Version 5.1.7 (6534.57.2). My installed version of Chrome is Version 21.0.1180.79 beta.

  • Duplicate Email Forms When Dragging PDF

    Don't know if this happens to other computers, but I can repeat it at will on mine....
    Create a document and save it as a PDF onto your desktop. Close all windows, then drag the PDF onto the Mail icon in the Dock to create a new email message with the PDF attached to it.
    On my system, with several different PDF files, when I do this, I get an email form with the PDF attached to it...and another blank email form just behind it with no attachment.
    For some reason, dragging the PDF onto the Mail icon in the Dock creates 2 mail forms.
    Anybody else seeing this?

    unfortunately it DOES happen to others... there is another longer thread here about the problem. no solution found yet.

  • Email form with checkboxes

    Hi All,
    I have a form with checkboxes that I finally got to work
    partially. However, there is one problem. If you forget to check
    the checkbox, (Yes or No), you get the error Element is Undefined.
    If you check the checkbox there is no problem and the form goes
    through email. How can I correct the error if the checkboxes are
    not checked. Any help would be appreciated,
    Best,
    Joy

    Joy,
    checkboxes do not pass a value unless they are checked.
    You can do it two ways that I know.
    One way is to set a default so the page does not error:
    <!--- set default so page does not error --->
    <cfparam name="FORM.myCheckbox" default="" type="any">
    The other way is to see if it was checked and do something
    then.
    <!--- If the checkbox is checked do this --->
    <cfif isDefined("FORM.myCheckbox")>
    do something
    <!--- If the checkbox is NOT checked do this --->
    <!--- don't need this cfelse if you don't want to do
    anything --->
    <!--- if it is not checked --->
    <cfelse>
    do something else
    </cfif>
    Ken Ford
    Adobe Community Expert
    Fordwebs, LLC
    http://www.fordwebs.com
    "JRLobdell" <[email protected]> wrote in
    message news:fb6hic$s7a$[email protected]..
    > Hi All,
    > I have a form with checkboxes that I finally got to work
    partially. However,
    > there is one problem. If you forget to check the
    checkbox, (Yes or No), you
    > get the error Element is Undefined. If you check the
    checkbox there is no
    > problem and the form goes through email. How can I
    correct the error if the
    > checkboxes are not checked. Any help would be
    appreciated,
    > Best,
    > Joy
    >

  • Email form guru needed

    Hi,
    Any help greatly appreciated from an email form guru!
    I have a email form that returns emails to my address - but no others. It is laden with a load of content and HTML. I have checked spam filters and junk inboxes and I'm at a loss as to why this would be happening. I have set up numerous email accounts but only two accounts I have had for ages work. Other emails from the same server are received by the same email host - so I don't think they are being blocked, unless that happens automatically when there is a large volume of html in the email. This still doesn't explain why I get the emails and no one else does.
    Thanks in advance!
    See http://www.recruitercritic.com/smarterhire-std-exit-survey.htm which goes to a php send form with the following code:
    Smarterhire exit interview:
    First name
    {$_POST['First']}
    Last name
    {$_POST['Last']}
    Title
    {$_POST['Title']}
    Organisation
    {$_POST['Organisation']}
    Contact number
    {$_POST['Contact_number']}
    email
    {$_POST['email']}
    Date joined
    {$_POST['When_joined']}
    Last date
    {$_POST['Last_day']}
    Survey requested by
    {$_POST['survey_recip']}
    Recipient email contact
    {$_POST['recip_email']}
    Why joined
    {$_POST['why_joined']}
    Role expectations
    {$_POST['Role_expectations']}
    Role expectations differences
    {$_POST['Role_differences']}
    $message_body
         Reasons for leaving:
    Was remuneration a consideration in your leaving?
    {$_POST['rem']}
    Was redundancy...
    $message_body
         Job satisfaction:
    Was the support and resources required to fill your role adequate?
    {$_POST['Support_radio']}
    The following....
    $message_body
         Exiting employees departure information:
    Which of the following best describes your departure?
    {$_POST['New_destination']}
    If applic....   End;       $headers  = "MIME-Version: 1.0\r\n";      $headers .= "Content-type: text/html; charset=iso-8859-1\r\n";      $headers .= "From: ".$_POST['email']." <".$_POST['first'].">\r\n";       mail($to, $subject, $message_body, $headers);      header ("Location: /exit-int-thankyou.htm");      exit;  }else{      header ("Location: /smarterhire-std-exit-survey.htm");      exit; }  ?>

    Ok, I am trying to understand the problem.
    If I understand correctly the php script works, it is just an issue of trying to send it to other email addresses.  Is that correct?
    You have been able to successfully reconfigure the php script to send to at least 1 other email address.  Correct?
    When you try some other email addresses they email from the form handler doesn't arrive.  Correct?
    Are the other email addresses at another domain than recruitercritic.com?
    Can you send to more than one address at the same time?  If so what happens when you send to the original email address and one of the others?
    Well, since the script works with the original email, and you are able to successfully modify the script to direct to at least one other email address then it seems that the script is working just fine.  I don't think you have a code issue.  I don't know how heavily formatted the emails are but it is possibly that the emails are getting blocked by the spam filters on the receiving email servers.  You might check http://mxtoolbox.com/ and see what your mail server IP is and what it's reputation is.  If it is on some blacklists that could account for it being blocked by filters on other servers. If that is the case then you should work on getting off any blacklists you are on.

  • Trouble linking AS3 and PHP to create email form

    I am using one of the Adobe cookbooks to create an email form for my flash website. I am SO close to getting this right and need some help! I used the AS3 code below as well as the PHP code below in order to create the email form. Everything seems to be working fine, that is until I try to send an email using the form. When I input all of the text into the form, I get the actionscript default warning I wrote that states "Oh no! Something is wrong! Try again..." Hence the email will not send. What could be wrong with the script? Or does it matter where I file the PHP file, my swf file, html file, and my fla file? I tried several combinations of filing everything together, seperate, and everything in between. Help! And thanks for anyone who can help!
    ACTIONSCRIPT CODE USED:
    stop();
    Buttons      
    sendbtn.buttonMode = true;
    sendbtn.addEventListener(MouseEvent.CLICK, submit);
    resetbtn.buttonMode = true;
    resetbtn.addEventListener(MouseEvent.CLICK, reset);
    Variables needed       
    var timer:Timer; var varLoad:URLLoader = new URLLoader;
    var urlRequest:URLRequest = new URLRequest( "mail.php" );
    urlRequest.method = URLRequestMethod.POST;
    Functions
    function init():void{
    //Set all fields to empty
    yourName.text = "";
    fromEmail.text = "";
    yourSubject.text = "";
    YourMsg.text = "";
    function submit(e:MouseEvent):void{
    //Check to see if any of the fields are empty
    if( yourName.text == "" || fromEmail.text == "" ||
    yourSubject.text == "" ||YourMsg.text == "" )
    { valid.text = "All fields need to be filled.";
    //Check if you're using a valid email address
    else if( !checkEmail(fromEmail.text) )
    { valid.text = "Enter a valid email address"; }
    else { valid.text = "Sending over the internet...";
    var emailData:String = "name="
    + yourName.text + "&from="
    + fromEmail.text + "&subject="
    + yourSubject.text + "&msg=" + YourMsg.text;
    var urlVars:URLVariables = new URLVariables(emailData);
    urlVars.dataFormat = URLLoaderDataFormat.TEXT;
    urlRequest.data = urlVars; varLoad.load( urlRequest );
    varLoad.addEventListener(Event.COMPLETE, thankYou );
    function reset(e:MouseEvent):void{
    init(); //call the initial clear function
    function checkEmail(s:String):Boolean {
    //This tests for correct email address
    var p:RegExp = /(\w|[_.\-])+@((\w|-)+\.)+\w{2,4}+/; var
    r:Object = p.exec(s);
    if( r == null ) {
    return false;
    return true;
    function thankYou(e:Event):void {
    var loader:URLLoader =
    URLLoader(e.target);
    var sent = new
    URLVariables(loader.data).sentStatus; if( sent == "yes" )
    valid.text = "Thanks for your email!";
    timer = new Timer(500);
    timer.addEventListener(TimerEvent.TIMER, msgSent);
    timer.start();
    else {
    valid.text = "Oh no! Something is wrong! Try again..."; }
    function msgSent(te:TimerEvent):void {
    if( timer.currentCount >= 10 ) { init();
    timer.removeEventListener(TimerEvent.TIMER, msgSent);
    PHP CODE USED
    <?php $yourName = $_POST['name'];
    $fromEmail = $_POST['from']; 
    $yourSubject = $yourSubject = $_POST['subject'];
    $YourMsg = $_POST['msg'];
    if( $yourName == true ) { $sender = $fromEmail; $yourEmail ="[email protected]";  (I have changed this to my email address, although not given in example)
    $ipAddress = $_SERVER['REMOTE_ADDR']; 
    $emailMsg = "$ipAddress \n$yourName  \n$sender
    \n\n$YourMsg 
    \n\n\n--Memo for myself--";$return = "From: $sender\r\n" .
    "Reply-To:$sender \r\n" ."X-Mailer: PHP/" . phpversion();
    if( mail( $yourEmail, "$yourSubject", $emailMsg, $return
    echo "sentStatus=yes"; }
    else { echo "sentStatus=no"; } }
    { $sender = $fromEmail; $yourEmail ="$fromEmail"; 
    $emailMsg = "\n\n\n--Memo for the sender. i.e. this is a copy of message you sent me.--
    \n\n$yourName  \n$sender
    \n$YourMsg \n";$return = "From: $sender\r\n" .
    "Reply-To:$sender \r\n" ."X-Mailer: PHP/" . phpversion();
    if( mail( $yourEmail, "$yourSubject", $emailMsg, $return
    echo "sentStatus=yes"; }
    else { echo "sentStatus=no"; } }
    ?>

    It may be indeed a problem of your server rsp. how it handles security issues and relative path-linking.
    You wrote: "Or does it matter where I file the PHP file, my swf file, html file, and my fla file..." I suppose you mean where to put all the files.
    1.Its a good beginners choice to put all the files you need (swf, html, php you don`t need the fla file on ) in the same directory of your server.
    2.If you publish to html from flash there will be three tags in the html (use a texteditor to look at the html-code) that read like this:
    <param name="allowScriptAccess" value="sameDomain" />
    change them for testing purposes to
    <param name="allowScriptAccess" value="always" />
    3.On some servers to prevent malicious code php scripts are restricted to certain directorys, look up the phpinfo on your server
    4.Even if swf, html and php are in one and the same directory use a "hard" path in your fla file for testing purposes, for example instead of calling "file.php" in your actionscript, call ("http://www.mydomain.com/directory/file.php"), when testing from flash you may get a better response where the problem lies

  • I have problems sending email with attachment which are larger. What could be the problem?

    I can't send larger email form my home wireless system but it works well when I am at work and use their wireless system, so I assume it is a setting in my home wifi account or a problem with accessing the mail server remotely. What  shouldI do, as it is annoying.....

    Is that my Internet provider?? Thanks and sorry for the stupid question....

  • My email forms are not working with one website, but are for my others, all hosted by the same host....

    I cannot get my email forms to work for one of my live sites... They work when I published to business catalyst, now they do not. I have contacted the host and they cannot seem to see the issue, as the other sites they host for me, the forms work just fine... Please help, I am about to punch a hole through my computer...
    -Travis

    Whatever happened, it sounds like you need to reset your phone. As contacts and messages seem to have gone they would be lost anyway unless they were on the SD card and/or backed up using Nokia Suite.
    I'd suggest you reset the phone by dialling *#7370# followed by the security code which is 12345 by default (is asked). The phone will reset and you should be able to use it again afterwards.
    Let us know what happens..
    Click on the blue Star Icon below if my advice has helped you or press the 'Accept As Solution' link if I solved your problem..

Maybe you are looking for

  • Embedding videos in pdf's...

    hello - i'm exporting clips i've editing in iMovie '09 as m4v's and converting them into flv's in adobe's media encoder (from a trial download of premier pro CS5) soasto embed them in a pdf... - my frustrating problem is that some of the flv's [that

  • SQL Dev Data Modeller:  Auto-generate Surrogate PKs in the Physical Model ?

    How can I have the logical modeller allow the user to design with logical PKs, but then have surrogate primary keys be auto-generated off sequences by the modeller when it comes to create the physical model - as in conventional application design? Wi

  • Enhancement request for the jsp visual editor

    Hello - With respect to the visual editor, could the rendering of adf faces command buttons work the same if you use the TextAndAccessKey instead of Text to define the button text? In 10.1.3, using TextAndAccessKey will cause the buttons to render as

  • Insert Statement for Form on Table with Report

    I'm using a 'getID' process On Load Before Header to make sure I get an ID for my form per suggestion from blarman here. The form has many fields from one table and four collections. If I let the process run as I think it should (when the ID is null)

  • How long should it take a well-qualified server admin to migrate from Tiger to Lion...

    How long should it take a well-qualified server admin to migrate from Tiger to Lion... For a small company, if the Tiger server is running on a G4 Tower: -Roughly 500GB in user files -Data resides on old-school ATA drives -OD Master - Kerberized -AFP