Send email only first time check box is checked?

I am trying to set up an article insert form with a checkbox for requesting a photographer. I have it set up to send a photographer request email when the form is submitted and the checkbox is checked. The only problem is that on the update transactions it detects the checkbox checked and sends the email AGAIN. I can't delete the trigger from the update form since it may be checked for the first time there. What I am really looking for is a way to only send the email only the FIRST time a box is checked. Is there a way I might be able to get this to work? Or an easy workaround? Hopefully I am explaining this well. Any help or ideas would be appreciated. Thanks,
-Dan

Hi Dan,
well, the only workaround I can think of would be adding this checkbox
(assumingly submitting a Y/N value) to the insert/update transaction, means, to save the checkbox value in an extra (char 1) field named e.g. "email_sent" -- on your update page you can retrieve the current field value from the query and use this "status" as "condition" for sending an email, means, if the field´s value currently equals N, the email will be sent, otherwise not.
would that make sense ?
Günter Schenk
Adobe Community Expert, Dreamweaver

Similar Messages

  • I have not been able to send email for some time but now i have stopped being able to recieve email.

    i have not been able to send emails for some time but in the last two days ive stopped being able to receive, the message says 'username or password incorrect' ive checked all the settings, ive deleated accout and set up again, ive rebooted phone. i tried to sync with pc but this also fails any ideas

    That is correct, They don't seem to know about Mac, never got a single scrap of help from  them.  Try recreating your account from scratch, delete the account, (write down all your settings first) and add an account, see if that works, and if it does, delete the first account to prevent things doubling up on you.  I think that's what I did, it was quite a while ago.  Hope this helps, or gets you pointed in the right direction.  Maybe go to At&t and try creating another account, and if ti works, delete the first.
    One other tihing I did was to reset Safari, as AT&T uses the net, that's about all I can remember, like I said it was awhile ago.

  • Ping all the servers into SP farm using powershell script and send email only if any of them failed to ping.

    Hi,
    i am trying to have such kind of functionality, so that if any servers in sharepoint farm failed then it will send notification email to specific user that server is not able to ping or failed. Right now following script is working but it sending mail either
    servers are all running or dead. But i would like to send email only if any of the server failed to ping. what i need to modify following code to work.
    Thanks in advanced
    #### Provide the computer name in $computername variable 
    $ServerName = "localhost","Dc-XX"  
    $smtp = "ExchChange" 
    $to = "[email protected]
    $from = "[email protected]
    $sub = " Server Status" 
    $body = @" 
    ##### Script Starts Here ######   
     foreach ($Server in $ServerName) { 
                        if (test-Connection -ComputerName $Server -Count 2 -Quiet ) {  
                            $body += write-output "$Server is alive and Pinging `n"  
                                } else { $body += Write-output "$Server seems dead not pinging `n"  
    $body 
    send-MailMessage -SmtpServer $smtp -To $to -Subject $sub -Body $body  -From $from   

    you need to put a check on the send-mailmessage if no ping fails then exit else send the email with message.
    also try this script, performing the the same thing but more granular way
    http://gallery.technet.microsoft.com/scriptcenter/d0670079-6158-4dc5-a9da-b261c70e4b7d#content
    Please remember to mark your question as answered &Vote helpful,if this solves/helps your problem. ****************************************************************************************** Thanks -WS MCITP(SharePoint 2010, 2013) Blog: http://wscheema.com/blog

  • Send email when first record updated problem

    Hi guys i have problem
    this code send email based on timer every 5 minutes
    it working ok but my problem i need to determine first rcord updated not inserted
    and send email this is starting work
    this is my code
    ---timer1_Tick---
    Sales.SalesClass SalesClass1 = new Sales.SalesClass();
    DataTable dt = SalesClass1.ShowSalesData("Data Source=192.168.1.5;Initial Catalog=Altawi-last06-01-2015;User ID=admin;Password=123");
    dataGridView1.DataSource = dt;
    dataGridView1.Refresh();
    namespace Sales
    class SalesClass
    public DataTable ShowSalesData(string ConnectionString)
    SqlConnection con = new SqlConnection(ConnectionString);
    SqlCommand cmd = new SqlCommand();
    cmd.Connection = con;
    cmd.CommandType = CommandType.Text;
    cmd.CommandText = "showsales1";
    SqlDataAdapter da = new SqlDataAdapter();
    da.SelectCommand = cmd;
    DataSet ds = new DataSet();
    da.Fill(ds);
    DataTable dt = ds.Tables[0];
    return dt;
    SELECT     ROW_NUMBER() OVER (ORDER BY dbo.[Jeddah-Live$Sales Header].No_) AS [م], dbo.[Jeddah-Live$Sales Line].[Document No_] AS 'رقم الطلب',
    dbo.[Jeddah-Live$Sales Header].[Bill-to Name] AS 'العميل', dbo.[Jeddah-Live$Sales Line].Area AS 'نوع الصبه', dbo.[Jeddah-Live$Sales Line].Description AS 'البيان',
    dbo.[Jeddah-Live$Sales Header].[Pump No_] AS 'المضخه', CAST(ROUND(dbo.[Jeddah-Live$Sales Line].Quantity, 0, 1) AS int) AS 'المطلوب',
    CAST(ROUND(dbo.[Jeddah-Live$Sales Line].[Quantity Shipped], 0, 1) AS int) AS 'المصبوب', CAST(ROUND(dbo.[Jeddah-Live$Sales Line].[Outstanding Quantity], 0,
    1) AS int) AS 'المتبقى '
    FROM         dbo.[Jeddah-Live$Sales Header] INNER JOIN
                          dbo.[Jeddah-Live$Sales Line] ON dbo.[Jeddah-Live$Sales Header].No_ = dbo.[Jeddah-Live$Sales Line].[Document No_] AND
                          dbo.[Jeddah-Live$Sales Header].[Sell-to Customer No_] = dbo.[Jeddah-Live$Sales Line].[Sell-to Customer No_]
    The code above not have any problem and working
    When first record updated send email
    Example to show
    orderno   quantity  shipped quantity
    12            20               0
    13            30               0
    14            25               0
    15           22                0
    suppose order no 14 shipped quantity updated be 10 (meaning 0 be 10
    then send email with starting work
    after this any updated to any record not send
    no problem i dont need any send email code but how to get record updated first

    Hi guys i have problem
    this code send email based on timer every 5 minutes
    it working ok but my problem i need to determine first rcord updated not inserted
    and send email this is starting work
    this is my code
    ---timer1_Tick---
    Sales.SalesClass SalesClass1 = new Sales.SalesClass();
    DataTable dt = SalesClass1.ShowSalesData("Data Source=192.168.1.5;Initial Catalog=Altawi-last06-01-2015;User ID=admin;Password=123");
    dataGridView1.DataSource = dt;
    dataGridView1.Refresh();
    namespace Sales
    class SalesClass
    public DataTable ShowSalesData(string ConnectionString)
    SqlConnection con = new SqlConnection(ConnectionString);
    SqlCommand cmd = new SqlCommand();
    cmd.Connection = con;
    cmd.CommandType = CommandType.Text;
    cmd.CommandText = "showsales1";
    SqlDataAdapter da = new SqlDataAdapter();
    da.SelectCommand = cmd;
    DataSet ds = new DataSet();
    da.Fill(ds);
    DataTable dt = ds.Tables[0];
    return dt;
    SELECT     ROW_NUMBER() OVER (ORDER BY dbo.[Jeddah-Live$Sales Header].No_) AS [?], dbo.[Jeddah-Live$Sales Line].[Document No_] AS '??? ?????',
    dbo.[Jeddah-Live$Sales Header].[Bill-to Name] AS '??????', dbo.[Jeddah-Live$Sales Line].Area AS '??? ?????', dbo.[Jeddah-Live$Sales Line].Description AS '??????',
    dbo.[Jeddah-Live$Sales Header].[Pump No_] AS '??????', CAST(ROUND(dbo.[Jeddah-Live$Sales Line].Quantity, 0, 1) AS int) AS '???????',
    CAST(ROUND(dbo.[Jeddah-Live$Sales Line].[Quantity Shipped], 0, 1) AS int) AS '???????', CAST(ROUND(dbo.[Jeddah-Live$Sales Line].[Outstanding Quantity], 0,
    1) AS int) AS '??????? '
    FROM         dbo.[Jeddah-Live$Sales Header] INNER JOIN
                          dbo.[Jeddah-Live$Sales Line] ON dbo.[Jeddah-Live$Sales Header].No_ = dbo.[Jeddah-Live$Sales Line].[Document No_] AND
                          dbo.[Jeddah-Live$Sales Header].[Sell-to Customer No_] = dbo.[Jeddah-Live$Sales Line].[Sell-to Customer No_]
    The code above not have any problem and working
    When first record updated send email
    Example to show
    orderno   quantity  shipped quantity
    12            20               0
    13            30               0
    14            25               0
    15           22                0
    suppose order no 14 shipped quantity updated be 10 (meaning 0 be 10
    then send email with starting work
    after this any updated to any record not send
    no problem i dont need any send email code but how to get record updated first

  • I cannot send emails, only receive, after upgrade to Yosemite today, Apple should resolve this issue. Any help more than welcome. Thanks

    I cannot send emails, only receive, after upgrade to Yosemite today, Apple should resolve this issue. Any help more than welcome. Thanks

    BTW. I have seen posts suggesting age of Mac has an affect. Mine is MacBook Pro (Retina, Mid 2012)
    The mail I am having problems send is Exchange and google mail. The google client I re-installed and this had no affect.

  • I cannot send emails, only receive, after upgrade to Yosemite today, Apple should resolve this issue. Any help more than welcome. Thanks in response to Pita Fito I have contacted three more people that made the upgrade and they have the same problem

    I cannot send emails, only receive, after upgrade to Yosemite today, Apple should resolve this issue. Any help more than welcome. Thanks
    in response to Pita Fito
    I have contacted three more people that made the upgrade and they have the same problem. My advise is not to upgrade until Apple solves the serious issue, I would hate to have to re-install Outlook...

    I can send e-mails just fine with apple mail on yosemite...
    Might not be a generic problem but rather a personal problem..
    You should try find a fix rather than waiting on apple.
    Hopefully somebody can help you out.
    More than happy to help with your settings/preference pain... And compare mine with yours...
    If you send some screenshots... I can send you my equivalent... So maybe you can figure it out.
    Is it a gmail or icloud email acount? Can be of more help if it is.

  • KDE3 trash works only first time

    I just noticed that KDE3 trash works only once.
    When I move files to Trash only first time I can empty it. Second time it does not work.
    I tried to delete ~/.local/share/Trash
    then logout/login
    but problem persists:
    Trash works only first time
    Any way to fix this?
    thanks

    bump
    so there is no way to fix this (unknown problem/resolution)?

  • Triggering Invoice Output only first time

    Hi,
    I want to trigger an Invoice output(Email : External Send medium)  only when it is created for the first time.
    The reason for doing this :  The document generated is a contract invoice  and some additional warranty info needs to be in body of the email for the partner types maintained in the contract.
    Also is there a way we can get the Bold Text in the email. I am using some standard texts to build email body and then calling
    SO_NEW_DOCUMENT_ATT_SEND_API1u2032 .
    e.g. Contract Number:  12345
    Appreciate if anyone has worked on such scenario.  I am considering  using routines.
    Thanks,
    Rao

    To Issue output only once, do the following setting
    Go to Transaction code NACE -> Select the Application (V3-for Billing -> Click on Output types -> Select the required output type -> Click on View Button -> Remove the Tick mark from the option "Multiple Issuing".
    Regards
    Vinod

  • Adobe Form will not go through email the first time it's submitted.

    I have created a simple fillable Adobe form that is placed on our local Intranet with a simple submit button at the bottom of the form.  The settings on the form are to send the entire form to the email address (which was also entered on the button properties).  The first time a new user of the form tries to submit the form it never goes through.  The email shows its been sent from the local users Outlook but it never arrives at the destination email address.  If the users tries to submit a second form everything works without any problems.  Does anyone know whey the first time the form is submitting (basically emailed) it doesn't go through?  Is this a problem with the form or with our local exchange server?  Any information would be greatly appreciated.
    Thanks.
    Richard

    I have created a simple fillable Adobe form that is placed on our local Intranet with a simple submit button at the bottom of the form.  The settings on the form are to send the entire form to the email address (which was also entered on the button properties).  The first time a new user of the form tries to submit the form it never goes through.  The email shows its been sent from the local users Outlook but it never arrives at the destination email address.  If the users tries to submit a second form everything works without any problems.  Does anyone know whey the first time the form is submitting (basically emailed) it doesn't go through?  Is this a problem with the form or with our local exchange server?  Any information would be greatly appreciated.
    Thanks.
    Richard

  • First time opening box

    I keep getting this box coming up saying it is the first time you have open this program but it is not. Please can anyone help?

    Is it in the Applications folder?
    Have you checked  "Don't warn me when opening applications on this disk image", forget exactly where that is.
    Other possible fixes...
    https://discussions.apple.com/thread/3826648?start=0&tstart=0
    http://forums.macrumors.com/showthread.php?t=405405

  • Active sync problems / syncing only first time

    Hello!
    I have a Xperia Z3 and everything works fine, except the Active Sync with my one.com account.
    The syncronization only works the first time directy after setting up the account. I can be shure, there is no problem with password or server adress because it syncs (even if it only works once)...
    The next time i try to get new e-Mails the mail app says something like "no connection to the server." (Thats not the original error message, but its translated from the german error message)
    My first attempt was to change the sync interval and tried from push to 10 minutes everything. Did not work.
    I then deleted the account and established it again. Did not work.
    The little syncing symbol next to the selection box always stays grey and does not move.
    Does anyone have the same problem and/or can help me?
    Thanks in advance!

    Glad to hear that you got it working with another client 
    Hard to say what's wrong here as i haven't seen the issue before. But as it says that their ActiveSync support is in beta and i haven't seen the issue before i would suspect there are issues with the server and that it will work also with our client in the future.
    In case yu want to give them more feedback about our client you can refer to this document: http://www-support-downloads.sonymobile.com/support/XperiaInBusinessZ3/Xperia_in_Business-Email_and_...
     - Official Sony Xperia Support Staff
    If you're new to our forums make sure that you have read our Discussion guidelines.
    If you want to get in touch with the local support team for your country please visit our contact page.

  • Cannot send email only when I am using my school wifi network

    Hi,
    I cannot send emails when I am in my school's wifi network. It is fine at home. But I am the only one at school experiencing this problem. I tried turning off and then on the iphone, deleting all my mail accounts and then reinstalling them, updating iphone to the newest firmware, restoring the iphone to factory settings, etc. but nothing worked so far.
    I have a yahoo mail and an exchange server email and they both send and receive normally in my home wifi network.
    The problem I get at school is that when I click send for an email, it keeps writing "sending" without actually sending it and then the only way to stop this loop (which could last hours) is to restart the phone and then deleting the email from the outbox. Before restarting the phone I cannot delete the email from the outbox.
    Any help would be appreciated.
    Thanks..

    Hi,
    I cannot send emails when I am in my school's wifi network. It is fine at home. But I am the only one at school experiencing this problem. I tried turning off and then on the iphone, deleting all my mail accounts and then reinstalling them, updating iphone to the newest firmware, restoring the iphone to factory settings, etc. but nothing worked so far.
    I have a yahoo mail and an exchange server email and they both send and receive normally in my home wifi network.
    The problem I get at school is that when I click send for an email, it keeps writing "sending" without actually sending it and then the only way to stop this loop (which could last hours) is to restart the phone and then deleting the email from the outbox. Before restarting the phone I cannot delete the email from the outbox.
    Any help would be appreciated.
    Thanks..

  • Email only get a blue box with  question mark

    would someone tell me how to fix my problem, when I get emails and adds I only get a blue box with a question mark. The rest of the family gets the complete email. The older version worked with no problems.

    I have the same problem... no one will ever answer this question... one of the most fundamental things about having email is being able to view an embedded picture... CAN SOMEONE PLEASE HELP US??????

  • Group addresses not added when sending email - only group name

    Just helping a friend use Thunderbird on a new PC with Win 7 Prof. Previously he used Outlook Express under Win XP.
    Downloaded latest version of Thunderbird. Imported old wab file as suggested using "morefunctionsfor..." . The old (complete) address book was imported correctly into a new address book in Thunderbird. It contained several groups. Each of these is correctly listed underneath the new address book and they also appear in the new address book. Clicking on any group correctly shows the list of addresses for that group.
    However, if one selects a group and sends an email to that group ONLY the name of the group appears in the TO field and the email fails to send. Closer inspection of the contents of the address field show that only the group name and NOT the constituent addresses are being included.
    Thanks

    My problem is that groups are no longer recognised and cannot be used to send emails. Does Mozilla respond to this problem or do we have to wait for a clever user to find the solution? The problem for me is fundamental and will shortly affect whether I have to find an alternative program.

  • CRM 2013 - workflow email sends email only to 1st user.

    In system workflow, I am doing send email. and then setting the "TO", "From" and "Subject".
    IF the sequence in "To" is as below,
    owner is A
    created By is B
    "Submitted" is C (custom field)  .
    Then email always goes to the first one ie A .
    If I change the sequence in "To" as below
    "Submitted" is C (custom field)
    owner is A
    created By is B
    the email goes to C.
    Note: Owner/created by/Sumbitted are fields of an entity Product.
    Plz help.
    Thanks
    P kar

    IN system workflow, I am doing send email. and then setting the "TO", "From" and "Subject".
    IF,
    owner is A
    created By is B
    "Submitted" is C (custom field)  .
    Then email always goes to the first one ie A .
    If I change the sequence in "To" as below
    "Submitted" is C (custom field)
    owner is A
    created By is B
    the email goes to C.
    Note: Owner/created by/Sumbitted are fields of an entity Product.
    Plz help.
    P kar

Maybe you are looking for

  • Sorting in report 10g?

    Hello Experts, Could you please help me? Is there a way to sort Oracle report by formula column? We selecting some columns in the report and one of the columns is a complicated select from different tables returning value. We want to sort the report

  • Maintain Condition Records in CRM

    Hello, In R/3 I use transactions VK11 / VK12 and VK13 to create, change and display condition records. I was wondering if there are similar transactions in CRM to maintain the condition records. (Because when I create a sales order in CRM I got the e

  • Installing Oracle Database with ASM on Oracle VM for SPARC

    We're installing Solaris 11 and Oracle VM for SPARC so we can install Oracle Database with ASM. There is a requirement when creating the database that the raw disk have an owner that is the same as the database. Everytime we try to change the owner i

  • Pages to ?????

    I will be developing a one page brochure possibly using Pages. For email distribution I will need to export the document to a: Word document or PDF, depending on what will give me the most reliable document for people in the "Windows" world to open a

  • N80 SMS Smilies

    Please, please, please can we have smilies on the N80? I appreciate that it is a buiness phone, but when did this ever stop me. PLEASE can we have them on the next firmware update. Thanking you in anticipation.