Send E-mail Send E-mail question

Hi,
Im trying out the Developers Toolbox and am trying to figure out if its right for me, and have very basic - beginning MySQL and php skills.
The tutorial at http://help.adobe.com/en_US/Dreamweaver/9.0_ADDT/help.html?content=ch12_send_email_01.htm l is rather sketchy, when I follow the tutorial on that page:
"The Send E-mail trigger allows the site developer to automatically send an e-mail when a form is submitted. It is an AFTER trigger, and it can be executed after insert/update/delete/custom transactions.
This trigger is accessible from the Application panel, Server Behaviors > + > Developer Toolbox > Send E-mail > Send E-mail."
well, when I try that, I get an error on the page which says:
"There are no insert, update, custom or login or delete transactions on page. Please insert an appropriate transaction first."
OK I am assuming that I need some kind of an html form open and on a page, however where do I start? Its as if the tutorials left out a huge chunk of the instructions. I realize I am no expert but if someone was buying the toolbox for the first time how would one know where to start? Do I need to create a new database table first? What kind of table? Can it be a table that is part of the site database for the shopping cart database that I already have linked to the store? Or does it need to be a seperate - database, table? Or just a php page with the form in it? Or does the form page need to be .html?
Or is the toolkit only for advanced developers with advanced php and MySQL skills and should I not even bother buying it?
Anyway can someone please give me a hint?
All I am trying to do is construct a simple email form for my web site which I have created in Dreamweaver and I need a php script to process the data inserted into the form and send it off to the mail server to forward to the webmaster's email address. I have the form created and brought up the form page, but then the Server Behaviors > + > Developer Toolbox > Send E-mail > Send E-mail. Tab is not accessible, and I am assuming that it wont be unless I have a .php file open, so I dont have a clue as to where to start.
So Ive got 27 days left to determine if its worth buying the toolbox, if I cant figure it out by then then I guess Ill buy some easier to use extension or stand alone to create my email form and other scripts.

Hi DBS,
just some thoughts:
So Ive got 27 days left to determine if its worth buying the toolbox, if I cant figure it out by then then I guess Ill buy some easier to use extension or stand alone to create my email form and other scripts
honestly said: if sending form data via email is about all you want to achieve, buying ADDT or even trying to learn it would be overkill, as it comes with heaps of features which you´ll probably never need -- in this case investing in a stand alone form-to-email script seems a better solution.
Cheers,
Günter Schenk
Adobe Community Expert, Dreamweaver

Similar Messages

  • I can't remember my Apple ID password or my security question answers. When I try to reset my password it wants to send it to my e-mail address but I can't get the e-mail because I don't have security answers or the password. How do I reset password?

    I can't remember my Apple ID password or my security question answers. When I try to reset my password it wants to send it to my e-mail address but I can't get the e-mail because I don't know my security answers or the password. How do I reset password?

    Alternatives for Help Resetting Security Questions and/or Rescue Mail
         1. If you have a rescue email address or a Security Questions issue, then see:
             If you forgot the answers to your Apple ID security questions - Apple Support.
             Manage your Apple ID primary, rescue, alternate, and notification email addresses - Apple Support
         2. Fill out and submit this form. Select the topic, Account Security. You must
             have a Rescue Email to use this option.
         3. This is the only option if you do not already have a valid Rescue Email.
             These are telephone numbers for contacting Apple Support in your country.
             Apple ID- Contacting Apple for help with Apple ID account security. Select
             the appropriate country and call. Ask to speak to the Account Security Team.
         4. Account security issues almost always require you to speak directly to an
             Apple representative to securely establish your identity as the account holder.
             You can set it up so that Apple calls you, either immediately or at a time
             convenient to you.
                1. Go to www.apple.com/support.
                2. Choose Contact Support and click Contact Us.
                3. Choose Other Apple ID Topics and choose the appropriate topic for
                    your issue.
                4. Follow the onscreen instructions.
             Note: If you have already forgotten your security questions, then you cannot
             set up a rescue email address in order to reset them. You must set up
             the rescue email address beforehand.
    Your Apple ID: Manage My Apple ID.
                            Apple ID- All about Apple ID security questions.

  • Apple send me a recovery e-mail to reset my security question answers however the e-mail they send has NO link for me to click in order to reset it?!

    Apple send me a recovery e-mail to reset my security question answers however the e-mail they send has NO link for me to click in order to reset it?! See screen shot Apple.............. Please help!!

    How/where are you opening the email ? Have you tried opening it in a different browser in case the reset link is being blocked due to the security settings that you have set on the one that you using ?

  • HT5312 Please send me security questions to my rescue emails ... i forgot it and your claver website doesn't give option to request sending it to my rescue mail!!!!!!!

    Please send me security questions to my rescue emails ... i forgot it and your claver website doesn't give option to request sending it to my rescue mail!!!!!!!

    We are fellow users here on these user-to-user forums, you're not talking to iTunes Support nor Apple.
    If you had a rescue email address (which is not the same thing as an alternate email address) then you would get the reset link on your account - if you aren't getting the link then you don't have one, and you won't be able to add one until you can answer your questions, you will need to contact Support in your country to get the questions reset.
    Contacting Apple about account security : http://support.apple.com/kb/HT5699
    When they've been reset you can then use the steps half-way down the HT5312 page that you posted from to add a rescue email address for potential future use

  • Apex mail send p_cc question

    Hello,
    This is probably an easy question. I searched the form and documentation but couldn't find anything.
    I'm using apex.mail.send as a process when the user presses a particular button. The user puts in the email address info. The requirement is to send it and cc multiple people.
    Based on how I have it set up now, the "To person" is getting the email for each cc. (2 people are cc'd then the "To person" is getting the email twice.) Is it possible to have the people cc'd on the same message so that the "To person" only get's it once?
    for c4 in (select EMAIL
    from REPORTING_APPS.EMAIL
    where EMPLID in ( :P3_CC1,:P3_CC2)) loop
    for c1 in (select EMAIL
    from REPORTING_APPS.EMAIL
    where EMPLID = :P3_ASSIGNED_INDIVIDUAL) loop
    apex_mail.send(
    p_to => c1.EMAIL,
    p_from => '[email protected]',
    p_cc => c4.EMAIL,
    p_body => l_body,
    p_body_html => l_body_html,
    p_subj => 'DRAFT’;
    end loop;
    end loop;
    END;
    Thanks for any insight! Melissa

    Melissa,
    You're calling APEX_MAIL.SEND for each cc recipient. You want to create a comma-separated string for the cc recipients and just call APEX_MAIL.SEND just once. Maybe something like:
    declare
        l_cc varchar2(1000);
    begin
        for c4 in (select EMAIL
                     from REPORTING_APPS.EMAIL
                    where EMPLID in ( :P3_CC1,:P3_CC2)) loop
            if length(l_cc) > 0 then l_cc := l_cc || ',';
            l_cc := l_cc || c4.email;
        end loop;
        for c1 in (select EMAIL
                     from REPORTING_APPS.EMAIL
                    where EMPLID = :P3_ASSIGNED_INDIVIDUAL) loop
            apex_mail.send(
                p_to => c1.EMAIL,
                p_from => '[email protected]',
                p_cc => l_cc,
                p_body => l_body,
                p_body_html => l_body_html,
                p_subj => 'DRAFT’;
        end loop;
    end;Joel

  • I have forgotten my answers to the questions which are asked to identify me, and I am trying to press "send instructions to my e-mail", but this does not work, what should I do?

    I have forgotten my answers to the questions which are asked to identify me, and I am trying to press "send instructions to my e-mail", but this does not work, what should I do?

    If the email hasn't arrived after a few hours and isn't in a spam filter, you need to ask Apple to reset your security questions. To do this, click here and pick a method; if that page doesn't list one for your country or you're unable to call, fill out and submit this form.
    (113969)

  • HT201303 Please help me. I have forgotten my security answers on two questions. It is not easy to restore it. Apple support did not send me on my e-mail  the answers or did not make opportunity to have as an option to reset my security questions on line.

    Please help me. I have forgotten my security answers on two questions. It is not easy to restore it. Apple support did not send me on my e-mail  the answers or did not make opportunity to have as an option to reset my security questions on line.

    You need to ask Apple to reset your security questions; ways of contacting them include clicking here and picking a method for your country, phoning AppleCare and asking for the Account Security team, and filling out and submitting this form.
    (97776)

  • Sender Mail Adapter - Incoming Mail Validation

    Hi Group,
    I am using sender mail Adapter to read the incoming mails from mail server,I have couple of questions:
    1.How we can configure adapter to read the mails from particular user.
    2.after reading the mail I am only taking subject line in to the mapping,is there any way we can validate whether the incoming
       subject line is in the right define form or not.
    3.how we can archive once after reading mail.
    4.Is there any performance affect on settling polling interval.
    Could you please help .
    Regards,
    Rajiv

    Hi,
    Refer Michael's steps on similar requirement.
    Picking mails from a particular sender using mail sender adapter
    Regards
    Krish

  • Sending email using system default mail client on linux and Mac

    Want to send e-mail using defalut mail client of Linux, Mac OSX, others.

    Your question may be about mail, and your question may be about Java,
    but the JavaMail library can't do what you're asking.
    I know of no platform-independent way to do what you're asking.
    You can write lots of platform-dependent code - to do it with Outlook
    on Windows, to do it with AppleMail on MacOS, to do it with Thunderbird
    on Linux - but I know of no way to do it with whatever mail client the
    user has configured on any system.
    Sorry.

  • Can't send email through my aol mail on my iPad 2 after updating to iOS 7

    I had to update m iPad because I was no longer able to work a lot of my apps because they kept telling me that there was an update that I had to do in order to even work my apps!  I was very reluctant to do it in the first place fearing that I would loose a lot of my pics, videos and or more!  Anyway so the other day I sat down and finally did it.  After updating my iPad 2 to the new operating system of iOS 7 now I cannot send emails through my aol mail on my iPad.  I tried putzing with the settings for smtp and to no avail nothing,  I then decided well maybe downloading the aol app would help but still not good enough because it takes up so much room that I had to delete some apps just to get it.  I had since deleted the aol app and am still trying to figure out why I keep getting the message I am getting is incorrect] hen it gives me two options which are option 1) Settings and option 2) Cancel.  I am in need of assistance here because I can receive mail but cannot send it.  Oh and I am able to send mail through my other email addresses on my iPad mail including my me.com and iCloud.com as well as two others but am not able to send through aol.  I am loosing my patience with apple very quickly as one why did I have to update the system and why am I forced to update my apps which I feel is completely ridiculous in the first place.  Everything was fine until I had to do that and now I cannot keep my iPad on for more then an hour when the battery drains so quickly now because I guess it takes up so much unneeded space!  PLEASE HELP ME!
    <Email Edited by Host>

    Hello, PriestessJeanann. 
    Thank you for visiting Apple Support Communities.
    Here is an article I would recommend going through when experiencing issues with mail.  The usual fix would be to delete the email account in question and add this account via the preset AOL option.  I would also recommend checking with your email provider for security procedures such as two-step verification as this could cause this issue.
    iOS: Troubleshooting Mail
    http://support.apple.com/kb/ts3899
    Cheers,
    Jason H.

  • How can i read only .txt file and skip other files in Mail Sender Adapter ?

    Hi Friends ,
                       <b> I am working on scenario like , I have to read an mail attachement and send the data to R3.</b>
                        It is working fine if only the .txt file comes.
                      <b>Some times ,html files also coming along with that .txt files. That time my Mail adapter fails to read the .txt file.</b>
                       I am using PayLoadSwap Bean and MessageTransformBean to swap and send the attachment as payload .
                         <b>Michal as told to write the Adapter module to skip the files .But i am not ware of the adapter moduel . If any blogs is there for this kind of scenarios please give me the link.</b>
                           Otherwise , please tell me how to write adapter module for Mail  Sender Adapter?
                      How to download the following
                        newest patch of XI ADAPTER FRAMEWORK CORE 3.0
    from SAP Service Marketplace. Open the file with WinZip and extract the following
    SDAs:
    &#61589;&#61472;aii_af_lib.sda, aii_af_svc.sda
    &#61589;&#61472;aii_af_cpa_svc.sda
                        I have searche in servive market place .But i couldn't find that . Can you please provide me the link to download the above .
                      If any other suggestions other than this please let me know.
    Regards.,
    V.Rangarajan

    =P
    Dude, netiquette. Messages like "i need this now! Do it!" are really offensive and no one here is being payed to answer anyone's questions. We're here because we like to contribute to the community.
    Anyway, in your case, just perform some search on how you could filter the files that are attached to the message. The sample module is just an example, you'll have to implement your own. Tips would be to query the filename of the attachments (or maybe content type) and for the ones which are not text, remove them.
    Regards,
    Henrique.

  • Mail Sender Adapter - Attachment Handling

    Hello,
    I 'm using XI 3.0 SP 14.
    I have problems with my Mail-Sender-Adapter.
    The mails, I fetch, have an xml-attachment which
    represents an IDOC-structure (ORDERS.ORDERS05).
    I want to sent this attachment as payload to an SAP-System.
    The problem is now, that I have 2 Payloads (SXMB_MONI).
    One for the normal email-body and one for my original
    xml-attachment. See below:
    - <SAP:Payload xlink:href="cid:[email protected]">
      <SAP:Name>MailMessage</SAP:Name>
      <SAP:Description>mail message</SAP:Description>
      <SAP:Type>Application</SAP:Type>
      </SAP:Payload>
    - <SAP:Payload xlink:href="cid:[email protected]">
      <SAP:Name>MailAttachment-1</SAP:Name>
      <SAP:Description>mail attachment</SAP:Description>
      <SAP:Type>ApplicationAttachment</SAP:Type>
      </SAP:Payload>
      </SAP:Manifest>
      </SOAP:Body>
    The XI Runtime Workbench (SXMB_MONI) takes (in my case)
    the wrong one (email-body-attachment) and gives me
    an parsing error. (Error occurs at my IDOC-Receiver-Adapter)
    Now my question:
    Can I remove the email-body-attachment, so that
    the further processing works with my xml-attachment?
    Or how can I resolve my problem.
    best regards
    Marcel Reichert

    Hi Marcel,
    use the PayloadSwapBean module to get the attachment as main payload.
    http://help.sap.com/saphelp_nw04/helpdata/en/2e/bf37423cf7ab04e10000000a1550b0/frameset.htm
    As parameters use:
    swap.keyName = payload-name
    swap.keyValue = MailAttachment-1
    Regards
    Stefan

  • How To Send A Text Attachment Through MAIL Adapter

    Hi Experts,
       I Did A Scenario that is  By using file adapter at the sender side and PI as a middle ware i have sent one text file to database
    Now here my question is
    I have to send the same text file which i have sent database... my using Mail Adapter
    Simply  File to Mail Scenario
    FILE         PI                MAIL
    But I have to send the same text file which i sent to database... by using mail adapter... Here all the configuration are done ... And the channels are working properly... only thing  here is..to send same text file using mail adapter..
    It will be good if  any one can explain step by step..
    Regards
    aravindh

    Hi Rajendra,
       Tanq for connecting me ... This  Blog helped me a lot ....And it is a useful answer to me..
    For this file to mail scenario we have got .txt as an attachment ... Its fine ... But her my Client is asking me to add CONTENT in the mail... Content in the sense..
    Example of content...
    Hi,
    Please find the attachment
    Regards,
    sap pi,
    They need in the form of like this...  To add content in the mail  What i have to do...DO i need to add more configurations if it is what are they...
    Please solve the issue.. It is appreciated  some one can explain me step by step or .. By sending me screen charts..
    Thanks in  advance....
    Regards
    vinay

  • My mail send defaults to wrong mail server. How do I change it?

    My mail send defaults to wrong mail server. How do I change it?

    That was a long time ago. I don't even remember asking the question. I don't have that trouble at the moment.

  • Error in mail sender channel : invalid sequence number

    Hello all,
    I'm having the following issue.
    I'm using the mail adapter to get messages from a mail server, which are attached to the mail.
    This interface is already productive, and is working fine most of the time.
    Only frequently I get the following error, which can be found in the java log.
    exception caught during processing mail message[630];
    java.io.IOException: the specified message not found: -ERR invalid sequence
    number
    This error seems only to appear when there are a lot of mails to be fetched.
    All the mail is read into PI and processed succesfully, only I also get a lot these errors.
    Does anyone know what causes this error?
    I also don't know where this sequence number is coming from, and what's the meaning of this.
    Is it possible it's trying to read the same mail more then once?
    The settings in the mail sender channel are:
    - transport protocol : POP3
    - message protocol : XIPAYLOAD
    - Use mail package : enabled
    - content encoding : none
    - Keep attachments : enabled
    - QOS : exactly once
    - Set adapter specific message attibutes : enabled
    The PI version is 7.01
    Thanks a lot in advance for the replies on this question.
    Kind regards,
    Marco van Iersel

    Hi
    Well we have used it with POP3 and it is working in the way as it should be.
    This feature is recommended  by sap when the number of emails to be read is large.
    You can set this additional parameter to restrict the number of mails fetched by sender mail adapter in one polling interval.
    Sometimes the mailbox configured for the sender mail adapter contains large number of unread mails, which exceeds the average expected number of mails in one polling interval. In such a case, processing of all the unread mails in the same polling interval by sender mail adapter degrades the system performance. To avoid this, set value of this parameter to the maximum number of mails to be fetched and processed in one polling interval. The remaining mails exceeding the limit would be processed in the next polling interval.
    That's why I have asked you to give it a try.

Maybe you are looking for

  • Printing in Photoshop on OS10.8

    I recently replaced my hard drive and upgraded to Mountain Lion. Now photoshop crashes every time I try to print to my HP Photosmart Premium printer. Andy Ideas

  • How to reassign a workflow task in SharePoint 2013?

    How can you reassign a workflow task in SharePoint 2013 (online)? I found some discussions online about how to do this, but I don't see this option using SP2013. Note the "Reassignment" checkbox from this screenshot (which I think is from 2010).

  • Photos color shift when placed in Pages document

    I'm used to working with a color managed workflow in Aperture; my monitor and printer are both calibrated. I'm having trouble getting accurate color when those photos are placed in a Pages document - whether they're imported directly from Aperture us

  • Webpage not appearing

    hello please review this website. www.princemoe.com the webpage seems not to load the way it should be in firefox. and music doesn;t work.. why? how do i fix this problem. would appreciate. thank you. moe

  • Can anyone explain the advantage of entity beans

    Hi All, I was wondering if anyone can explain the advantage of entity beans versus session beans. We argue that session beans can perform retrival/storage more efficiently than having an extra layer of entity beans. Basically we can't see any advanta