Submit by email auto reply

I have a form that teachers fill out and send to me. Many of them also fax a copy of the form because they are not sure I received the electronic version. Is there a way I can set it up so that when they press the submit by email that they get an auto-reply message when it is received?

That would be a feature of your own e-mail program, if it is there.
Aandi Inston

Similar Messages

  • How can I set up auto reply on Mozilla Thunderbird email?

    I can't seem to set up auto reply for my email. I need to do this because I will be away from my computer for over a month.

    Please look at what your email provider can offer.
    To do it using Thunderbird, you'll need to leave it running and connected while you're gone. Much better to use someone else's server.

  • When send email require auto reply email received and opened

    I would like to know who to set up auto reply so I know that my clients they have recieved and opened email I have sent, if it is at possible with mail

    Apple Mail does not support read receipts. You will find that most people will not sign receipts - personally, I would not; if you require receipts, you could send it USPS return receipt requested.

  • Configure auto reply message with original email in exchange 2010

    Dear All,
    I have to configure Auto reply with original message in exchange 2010.
    please help me to configure..
    Sunil
    SUNIL PATEL SYSTEM ADMINISTRATOR

    Hi   SKPATEL
    Thank you for your question.
    By my knowledge, we cannot meet your requirement, you can followed Ed's idea.
    We just use out of office to reply all email without original email when the recipient is out of office.
    You can refer to the following link to configure out of office:
    http://technet.microsoft.com/en-us/library/aa997463(v=exchg.80).aspx
    If there are any questions, please let me know.
    Best Regard,
    Jim

  • How to block a Sender from Sending Emails but Auto Reply Set on That Id should be able to send mails .

    hi ,
    I need to block a certain Email id from sending mails , but at the same time auto reply should work and any mail received by that id an auto reply should be generated .
    Please guide me m a not an exchange pro.
    Thanks

    Hi,
    I have some tests in my lab using Exchange 2010. I recommend you create a transport rule to prohibit a user from sending emails. Here is an example for your reference.
    And then use the following cmdlet to set the auto reply for this user.
    Set-MailboxAutoReplyConfiguration -Identity "amy02" -AutoReplyState Enabled -ExternalMessage "External OOF message here" -InternalMessage "Internal OOF message here"
    Here is the result.
    Hope it helps.
    Best regards,
    Amy Wang
    TechNet Community Support

  • How do I set up an auto reply for all received messages during dates that I am not using email?

    I want an auto reply to go to all senders of email during dates that I will not be able to access email. I want to customize this reply.

    https://support.mozilla.org/en-US/kb/vacation-response

  • AppleScript for Auto Reply to an email with an Attachment????

    Forgive me. All this applescript stuff is fairly new to me. I've set up my Entourage email to automatically reply to certain rules that I have created. Well, I'm trying to have an attachment added to those auto replied emails. How can this be done? I'v researched for days and can only find stuff concerning Outlook Express which you are apparently given an option to add an attachment other than the mere text reply. Any info would be great!
    Thanks much,
    Robert

    try this Robert, works here for me using Entourage 11.3.3
    tell application "Microsoft Entourage"
    set theOrigionalMessage to the current messages
    end tell
    repeat with theMsg in theOrigionalMessage
    my ProcessMsg(theMsg)
    end repeat
    on ProcessMsg(theMsg)
    tell application "Microsoft Entourage"
    activate
    set theSender to sender's address of theMsg
    set theSubject to "Heres your attachment"
    set theBody to "test"
    set _Attachment to "Macintosh HD:Users:Budgie:Desktop:TEST.txt" as alias
    set MyReply to make new outgoing message with properties {recipient:theSender, subject:"Hello: " & theSubject, content:theBody}
    make new attachment at MyReply with properties {file:_Attachment}
    open MyReply --comment out if you dont need to view
    --send MyReply -- un comment to send without viewing
    end tell
    end ProcessMsg
    Budgie

  • How can i send an auto reply with form content to sender?

    Hai!
    I'm new to website building, but i already came a long way
    i made a form and i like to send a auto reply with the form content (if that isnt too difficult) to the person who filled it in.
    The form i made is in PHP (coding i copied partly from someone from the internet .)
    You can see the from at: http://vinddit.nl/vindditnu%20php%20version.php
    My PHP coding so far
    <?php
    // Set email variables
    $email_to = '[email protected]';
    $email_subject = 'Aanvraag - VINDDIT NU!';
    // Set required fields
    $required_fields = array('Voornaam','email','Achternaam','Plaats');
    // set error messages
    $error_messages = array(
              'Voornaam' => 'Vul hier uw voornaam in a.u.b.',
              'email' => 'Vul hier een geldig email adres in a.u.b.',
              'Achternaam' => 'Vul hier uw achternaam in a.u.b.',
              'Plaats' => 'Vul hier uw woonplaats in a.u.b.'
    // Set form status
    $form_complete = FALSE;
    // configure validation array
    $validation = array();
    // check form submittal
    if(!empty($_POST)) {
              // Sanitise POST array
              foreach($_POST as $key => $value) $_POST[$key] = remove_email_injection(trim($value));
              // Loop into required fields and make sure they match our needs
              foreach($required_fields as $field) {
                        // the field has been submitted?
                        if(!array_key_exists($field, $_POST)) array_push($validation, $field);
                        // check there is information in the field?
                        if($_POST[$field] == '') array_push($validation, $field);
                        // validate the email address supplied
                        if($field == 'email') if(!validate_email_address($_POST[$field])) array_push($validation, $field);
              // basic validation result
              if(count($validation) == 0) {
                        // Prepare our content string
                        $email_content = 'New Website Comment: ' . "\n\n";
                        // simple email content
                        foreach($_POST as $key => $value) {
                                  if($key != 'submit') $email_content .= $key . ': ' . $value . "\n";
                        // if validation passed ok then send the email
                        mail($email_to, $email_subject, $email_content);
                        // Update form switch
                        $form_complete = TRUE;
    function validate_email_address($email = FALSE) {
              return (preg_match('/^[^@\s]+@([-a-z0-9]+\.)+[a-z]{2,}$/i', $email))? TRUE : FALSE;
    function remove_email_injection($field = FALSE) {
       return (str_ireplace(array("\r", "\n", "%0a", "%0d", "Content-Type:", "bcc:","to:","cc:"), '', $field));
    ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
    <head>
              <title>Aanvraag formulier</title>
              <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
              <link href="style.css" rel="stylesheet" type="text/css" />
        <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/mootools/1.3.0/mootools-yui-compressed.js"></script>
        <script type="text/javascript" src="validation/validation.js"></script>
              <script type="text/javascript">
    var nameError = '<?php echo $error_messages['fullname']; ?>';
                        var emailError = '<?php echo $error_messages['email']; ?>';
                        var commentError = '<?php echo $error_messages['comment']; ?>';
    function MM_preloadImages() { //v3.0
      var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
        var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
        if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
        </script>
    <style type="text/css">
    </style>
    </head>
    <body onload="MM_preloadImages('icons/x.png')">
    <p> </p>
    <p>
      <?php if($form_complete === FALSE): ?>
    </p>
        <form action="vindditnu php version.php" method="post" enctype="application/x-www-form-urlencoded" name="Form"  id="commentsform">
        <h1><img src="icons/vinddit3.gif" width="220" height="80" alt="logo" /></h1>
        <h1>Wat zoekt u?:</h1>
                     <table width="690" border="0">
            <tr>
              <td>In welke categorie zoekt u?*</td>
              <td colspan="3"><select name="Ophalen_verzenden" id="Ophalen_verzenden">
                <option selected="selected">Meubels </option>
                <option>Witgoed </option>
                <option>Woon accesoires </option>
                <option>Kleding </option>
                <option>Schoenen </option>
                <option>Mode accesoires </option>
                <option>Speelgoed </option>
                <option>Boeken, tijdschriften, papierwaren </option>
                <option>Overig </option>
              </select></td>
            </tr>
            <tr>
              <td>Kleur:* </td>
              <td colspan="3"><select name="kleuren" id="kleuren">
                <option>Blauw</option>
                <option>Rood</option>
                <option>WIt</option>
                <option>Zwart</option>
                <option>Beige</option>
                <option>Bruin</option>
                <option>Geel</option>
                <option>Oranje</option>
                <option>Rood</option>
                <option>Metallic (Bijv. Zilver/Goud/Brons/Koper</option>
                <option>Meerkleurig</option>
                <option selected="selected">Overig/ N.v.t</option>
              </select></td>
            </tr>
            <tr>
              <td>Merk: </td>
              <td colspan="3"><input name="Merk" type="text" id="Merk5" value="<?php echo isset($_POST['Merk'])? $_POST['Merk'] : ''; ?>" />
                <?php if(in_array('Merk', $validation)): ?>
                <span class="error"><?php echo $error_messages['Merk']; ?></span>
                <?php endif; ?></td>
            </tr>
            <tr>
              <td>Type/Model:</td>
              <td colspan="3"><input type="text" name="type" id="type" value="<?php echo isset($_POST['type'])? $_POST['type'] : ''; ?>" />
                <?php if(in_array('type', $validation)): ?>
                <span class="error"><?php echo $error_messages['type']; ?></span>
                <?php endif; ?></td>
            </tr>
            <tr>
              <td>Materiaal: </td>
              <td colspan="3"><input name="Materiaal" type="text" id="Materiaal" value="<?php echo isset($_POST['Materiaal'])? $_POST['Materiaal'] : ''; ?>" />
                <?php if(in_array('Materiaal', $validation)): ?>
                <span class="error"><?php echo $error_messages['Materiaal']; ?></span>
                <?php endif; ?></td>
            </tr>
            <tr>
              <td>Maat: </td>
              <td colspan="3"><input type="text" name="Maat" id="Maat" value="<?php echo isset($_POST['Maat'])? $_POST['Maat'] : ''; ?>" />
                <?php if(in_array('Maat', $validation)): ?>
                <span class="error"><?php echo $error_messages['Maat']; ?></span>
                <?php endif; ?></td>
            </tr>
            <tr>
              <td>Conditie*:</td>
              <td colspan="3"><select name="conditie" id="conditie" >
                <option>Zo goed als nieuw</option>
                <option>Nieuw</option>
                <option>Bebruikt</option>
                <option selected="selected">Geen voorkeur </option>
              </select></td>
            </tr>
            <tr>
              <td>Ophalen/Verzenden:*</td>
              <td colspan="3"><select name="ophalen" id="ophalen">
                <option>Ophalen</option>
                <option>Verzenden</option>
                <option>N.v.t</option>
                <option>Geen voorkeur </option>
              </select></td>
            </tr>
            <tr>
              <td>Prijs Min:</td>
              <td><input name="prijsmin" type="text" id="prijsmin" size="10" value="<?php echo isset($_POST['prijsmin'])? $_POST['prijsmin'] : ''; ?>" />
                <?php if(in_array('prijsmin', $validation)): ?>
                <span class="error"><?php echo $error_messages['prijsmin']; ?></span>
                <?php endif; ?></td>
              <td>Prijs Max:</td>
              <td><input name="Prijs" type="text" id="Prijs" size="10" value="<?php echo isset($_POST['Prijs'])? $_POST['Prijs'] : ''; ?>" />
                <?php if(in_array('Prijs', $validation)): ?>
                <span class="error"><?php echo $error_messages['Prijs']; ?></span>
                <?php endif; ?></td>
            </tr>
          </table>
          <h1>Opmerkingen:</h1>
          <table width="690" border="0">
            <tr>
              <td height="25">Opmerkingen:</td>
              <td rowspan="2"><textarea name="Opmerkingen" cols="67" rows="10" id="Opmerkingen"><?php echo isset($_POST['Opmerkingen'])? $_POST['Opmerkingen'] : ''; ?></textarea>
                <?php if(in_array('Opmerkingen', $validation)): ?>
                <span class="error"><?php echo $error_messages['Opmerkingen']; ?></span>
                <?php endif; ?></td>
            </tr>
            <tr>
              <td height="78"> </td>
            </tr>
          </table>
          <h1>Uw Gegevens:</h1>
          <table width="690" border="0">
            <tr>
              <td>Voornaam/Voorletters*:</td>
              <td><input type="text" name="Voornaam" id="Voornaam" class='invul' value="<?php echo isset($_POST['Voornaam'])? $_POST['Voornaam'] : ''; ?>" />
                <?php if(in_array('Voornaam', $validation)): ?>
                <span class="error"><?php echo $error_messages['Voornaam']; ?></span>
                <?php endif; ?></td>
              <td>Achternaam:* </td>
              <td><input type="text" name="Achternaam" id="Achternaam" class='invul' value="<?php echo isset($_POST['Achternaam'])? $_POST['Achternaam'] : ''; ?>" />
                <?php if(in_array('Achternaam', $validation)): ?>
                <span class="error"><?php echo $error_messages['Achternaam']; ?></span>
                <?php endif; ?></td>
            </tr>
            <tr>
              <td>Straatnaam:</td>
              <td><input type="text" name="Straat" id="Straat" class='invul' value="<?php echo isset($_POST['Straat'])? $_POST['Straat'] : ''; ?>" />
                <?php if(in_array('Straat', $validation)): ?>
                <span class="error"><?php echo $error_messages['Straat']; ?></span>
                <?php endif; ?></td>
              <td>Huisnummer:</td>
              <td><input name="Huisnummer" type="text" id="Huisnummer" class='invul' size="10" value="<?php echo isset($_POST['Huisnummer'])? $_POST['Huisnummer'] : ''; ?>" />
                <?php if(in_array('Huisnummer', $validation)): ?>
                <span class="error"><?php echo $error_messages['Huisnummer']; ?></span>
                <?php endif; ?></td>
            </tr>
            <tr>
              <td>Postcode:</td>
              <td><input type="text" name="Postcode" id="Postcode" class='invul' value="<?php echo isset($_POST['Postcode'])? $_POST['Postcode'] : ''; ?>" />
                <?php if(in_array('Postcode', $validation)): ?>
                <span class="error"><?php echo $error_messages['Postcode']; ?></span>
                <?php endif; ?></td>
              <td>Plaats:* </td>
              <td><input type="text" name="Plaats" id="Plaats" class='invul' value="<?php echo isset($_POST['Plaats'])? $_POST['Plaats'] : ''; ?>" />
                <?php if(in_array('Plaats', $validation)): ?>
                <span class="error"><?php echo $error_messages['Plaats']; ?></span>
                <?php endif; ?></td>
            </tr>
            <tr>
              <td>Email Adres:*</td>
              <td colspan="3"><input type="text" name="email" id="email" class='invul' value="<?php echo isset($_POST['email'])? $_POST['email'] : ''; ?>" />
                <?php if(in_array('email', $validation)): ?>
                <span class="error"><?php echo $error_messages['email']; ?></span>
                <?php endif; ?></td>
            </tr>
            <tr>
              <td>Telefoonnummer:</td>
              <td colspan="3"><input name="Telefoon" type="text" id="Telefoon" class='invul' value="<?php echo isset($_POST['Telefoon'])? $_POST['Telefoon'] : ''; ?>" />
                <?php if(in_array('Telefoon', $validation)): ?>
                <span class="error"><?php echo $error_messages['Telefoon']; ?></span>
                <?php endif; ?></td>
            </tr>
          </table>
          <p>
            <label for="Straat"></label>
            <label for="Huisnummer"><br />
            </label>
            <input type="submit" name="Submit" id="Submit" value="Verstuur" />
                   <input type="reset" name="Reset" id="Reset" value="Wissen" />
          </p>
        </form>
        <?php else: ?>
        <div class="bedankt">
          <p>Bedankt voor uw aanvraag!</p>
          <p>Wij zullen uw aanvraag zo spoedig mogelijk behandelen. Meestal duurt dit 2 a 3 werkdagen.</p>
          <p><img src="icons/vinddit3.gif" width="220" height="80" alt="logo" /></p>
    </div>
        <p>
          <script type='text/javascript'>
    setTimeout("ourRedirect()", 5000)
    function ourRedirect() {
          </script>
          <?php endif; ?>
    </body>
    </html>
    and .JS
    window.addEvent('domready', function() {
              // Get the form
              var form = $('comments_form');
              //  if the form is found...
              if (form) {
                        // obtain error fields
                        var name = $('fullname');
                        var email = $('email');
                        var comment = $('comment');
                        // Set the default status
                        var isValid = true;
                        // input error function for the error messages
                        var addError = function (field, msg) {
                                  field.addClass('error'); // Add error class to field
                                  var error = field.getParent().getElement('span') || new Element('span', {'class': 'error'}); // add error message if not already placed
                                  error.set('text', msg); // error text msg
                                  error.inject(field, 'after'); // Insert error message after field
      // detach error function used to delete any error messages and remove the error class
                        var removeError = function (field) {
                                  field.removeClass('error'); // Remove error class from form fields
                                  var error = field.getParent().getElement('span'); // find any existing error messages
      // destroy if error message
                                  if (error) {
                                            error.destroy();
    //  insert submit form event
                        form.addEvent('submit', function (e) {
                                  // Test name length
                                  if (name.get('value').length === 0) {
                                            isValid = false;
                                            addError(name, nameError);
                                  } else {
                                            isValid = true;
                                            removeError(name);
    // check email length
                                  if (email.get('value').length === 0) {
                                            isValid = false;
                                            addError(email, emailError);
                                  // check email validity
                                  } else if (!email.get('value').test(/^([a-zA-Z0-9\+_\-]+)(\.[a-zA-Z0-9\+_\-]+)*@([a-zA-Z0-9\-]+\.)+ [a-zA-Z]{2,6}$/)) {
                                            isValid = false;
                                            addError(email, emailError);
                                  } else {
                                            isValid = true;
                                            removeError(email);
                    // check comment length
                                  if (comment.get('value').length === 0) {
                                            isValid = false;
                                            addError(comment, commentError);
                                  } else {
                                            isValid = true;
                                            removeError(comment);
                                  // If form invalid then stop event happening
                                  if (!isValid) {
                                            e.stop();

    lisavs12686 wrote:
    Whould it also be possible to send the sender the submited data (looking like the filled in form or so)?
    not really nessecary but whould be a nice  jextra
    You can but you would need to send it as an html email which is much more complicated.
    What you would do is build a page/table construction like below. You would need to use the php variables to echo out the information in the <td></td> cells (example below).
    $reply = $_POST['email'];
    $from = '[email protected]';
    $replysubject = "Auto-Reply: Website Name";
    $headers  = 'MIME-Version: 1.0' . "\r\n";
    $headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
    $headers .= "From: $from\r\nReply-to: $reply";
    $replymessage = '
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>Comments from Website</title>
    </head>
    <body>
    <table>
    <tr>
    <td bgcolor="#ffffff" style="font-family: verdana, arial, helvetica, sans-serif; font-size: 13px; padding: 10px 15px;">Name: </strong>'.$name.'
    </td>
    </tr>
    </table>
    </body>
    </html>';
    mail($reply, $replysubject, $replymessage, $headers);

  • Text auto reply

    Is there an app that will auto reply to incoming text messages

    I have been asking this question for ages.  I have sent emails and letters (below) to Apple numerous times without even a simple response..............
    As a stockholder in Apple and a large user of the Appleproducts, I have a suggestion and a question which in my opinion will capturean additional market share away from Blackberry, including my own.
    By way of background, I am one of the business leaders ina group of approximately 600 people.  Wehave deployed Blackberries as the device of choice.  I have tried and returned the iPhone and iPadas I find that it does not serve my needs for the lack of one simple functionthat I would think has a very easy solution.  I feel that if Apple could enhance itsportable operating systems by a simple function, it would sway hundreds ofthousands, if not millions of users to switch to Apple products.
    I use my device as a communications device for bothbusiness and personal use.  I am constantly emailing and texting and everykey touch is important to me as I do not have time to waste with repeatedkeystrokes.
    The autotext function of the Blackberry has keptme with Blackberry as it allows the user to define abbreviations on a systemwide platform.  Examples: Users can setup abbreviation for frequently used multiple key strokes.
    I frequently set up a lot of conference calls using thesame dial in number and passcodes so I set up an abbreviation called“icrl”.  I type in icrl and hit the space bar and it automatically typesin the entire phone number and the access codes for the call. 
    I fly a lot so I abbreviated “hstdn”.  Thistranslates into “I have to shut down now, my flight is leaving.  Will callyou when I land”.
    “CMCP” translates into “Please call me on my cell phone248-417-7900”.
    Since this function is native to the operating system, itfunctions on all functions and apps and in any field, unlike add on apps thatrequire messages to be created using an app and cannot be used to answer anincoming message.
    I would like to use the Apple products as I am attractedto their designs but this lack of functionality has rendered them fairlyuseless to me.  Can you please explain tome the likelihood of including this in future enhancements and why this has notbeen included to date?  I am trying tounderstand it and fail to see why unless it is an IP issue, but even that makesno sense as Microsoft has it included in its products as “autocorrect” and evenon the Mac platform.
    The addition of this simple functionality would enable meto truly change the way I work and sell a lot more Apple products.  If Apple could add this to its functionality,I think Apple would win over a good percentage of those users who will notmigrate because of this function.
    Thank you for your time

  • Message id in auto-reply

    Dear All,
    Can we remove the message-id from the auto-reply?
    in an auto-reply the message bounces back to the user including in the body part the following:
    Message-id: <[email protected]>
    Date: Thu, 31 Jul 2008 21:36:08 +0300
    From: [email protected]
    To: [email protected]
    Subject: sub
    Can we eliminate the Message-id?
    Messaging server 6.3
    Thanks,
    Scotty

    s@mira123 wrote:
    Can we remove the message-id from the auto-reply?Why would you want to do this?
    in an auto-reply the message bounces back to the user including in the body part the following:
    Message-id: <[email protected]>
    Date: Thu, 31 Jul 2008 21:36:08 +0300
    From: [email protected]
    To: [email protected]
    Subject: sub
    Can we eliminate the Message-id?As per the RFC 2822:
    <snip>
    3.6.4. Identification fields
    Though optional, every message SHOULD have a "Message-ID:" field.
    Furthermore, reply messages SHOULD have "In-Reply-To:" and
    "References:" fields as appropriate, as described below.
    </snip>
    So coming back to my earlier question, why would you want to eliminate the message-id: field?
    Regards,
    Shane.

  • Submit via Email Button

    Hello,
    What Form is it?
    I have developed a timesheet form that was coverted from a excel spreadsheet into pdf. The form is located on the Comapny's Intranet for all staff to access. It was currently used to print out and fill in by hand until we started reducing ther amount we print.
    The issue?
    I am having an issue when submitting a form via email. It will open up Outlook and attach to the outgoing mail but it attaches as an xml. I am curious as too how I change this to a pdf. Been bugging me for a while now and I have had no luck myself.
    Any help will be greatly appreciated.
    Many thanks

    George thank you for your reply.
    The problem I have at the minute is I have used a simple Submit By Email and even when I test that with adobe reader or preview in when I am editing the form I still get xml file format.
    I have tried to create a simple button and change its control type to a Submit and it brings up a Submit tab and says Submit to URL. It also allows me to change the file to a pdf. Am I in the right place?

  • Multiple signatures, first signs fine, but won't submit via email

    I have a form with three digital signatures. After the first person signs, they click submit to send to the next person who will sign. That person clicks submit after they sign to send the form to HR. However, when the first person signs and clicks submit, the email process opens successfully, but never sends because the message says two signatures are unsigned. This is a true and valid state, but I need the submit button to work even though the additional two signatures to be signed in order.
    FYI, I do have a collections set up on the first two signatures to lock all fields except the signatures and radio buttons on the second signature.
    Thanks for any help available,
    MDawn

    Hi, and thank you for the reply.
    I've already spent several hundred dollars on getting Adobe Acrobat software, and was hoping there was some work-around on this? What did people do before LiveCycle for instance when they needed to get data from submitted forms via email?
    Please don't misunderstand, but as in my example described above, what can a 3rd party do for me (to enable more 'robust rights') that I can't do myself? I'm trying to figure out if I have the software to do it, paid for the software that is "supposed" to do it, why then I need to pay more money to someone else to make the software do what it's supposed to? I sure don't want to have to pay someone to fix it each time I need to make a change in my form for instance...
    I'm confused I guess - I suppose the purpose of my asking on the forum here was to hopefully gain some know-how as how to go about doing this myself vs. paying someone else to do it for me. I want to learn, but just don't know where to start. Or, maybe the software I have just doesn't do what I believed it was capable of doing?
    Guidance and/or suggestions from all on this point would be very appreciated. Thank you.

  • Auto reply in CIM 4.2.4

    We have installed Cisco Email interaction manager 4.2.4 at one of our client site.
    here we are unable to find the option for configuring auto reply (mail acknoldegment) in this.version of CIM.
    If any one know about the auto reply configuration in CIM 4.2.4

    You have not made a rule. It's not that obvious - but type the rule name in the Rule Name box and press the Enter key. Now you can select and configure the rule, and again press enter to create a row.
    Lots of the EIM config works this way. You must press Enter.
    Regards,
    Geoff

  • Is it possible to use a non-null sender in auto-reply / out of office messages?

    I am using a smarthost that blocks null senders by default.  They have indicated that they can provide an override for our server to allow null senders, but the e-mail from null senders will go out a "high risk" IP that is likely to get
    blacklisted because e-mail from null senders is triggering more blacklisting as of late.  I would prefer to make Exchange populate the sender field on the outbound auto-reply / out of office messages.  Is this possible?

    Hi PRDIT,
    Based on my knowledge, it is impossible to achieve this goal by normal method directly.
    Thanks
    If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Mavis Huang
    TechNet Community Support

  • How do you Auto Reply / Auto Response / Vacation Reply

    Hi there,
    A friend asked me how to get his email to auto-reply.
    The problem is, he's on a corporate network that pushes his mail, so he can't go to his desktop and change settings.
    It has to be done from the phone if possible.
    Someone in the discussions said it could be done but didn't give details.
    Can you help?
    Thanks.
    Mike

    Mike,
    If I'm not mistaken, Auto Reply cannot be turned off or on from the iPhone.
    Your friend should check with his IT department.
    Matt

Maybe you are looking for

  • ICal Server - Can't log in with Kerberos?

    Hello, I have been struggling the past few days getting ical server properly installed and configured to incorporate into our environment (just installed 10.6 server). I am very new to Kerberos, in fact never heard of it before getting into this, but

  • Problem with sound

    Hello to everyone I am new here and I am having serious problems with some sound files that are crashing the Panotour Pro software when I add them The problem I think started after I download and use Audiocity with mp3 LAME plugin but I am not sure T

  • Saving Problem

    I have a 641 page PDF created in Adobe Acrobat 9.  When used with Reader, sometimes the file can not be saved.  Message I get is "The document could not be saved.  The file may be read-only, or another user may have it open.  Please save the document

  • Makin Monopoly

    I wanna write a program that plays monopoly but i'm having a few troubles. One of them is that i have an image of the monopoly board and another dos window that displays text. i have three methods in the Applet , one is play, init, and paint. I'm not

  • Export P2 project....

    I've not done that much work with P2, but I'm starting a big project with all the files coming from P2 cards. When I finish, we need to export out to tape. Will CS3 or CS4 export a P2 project out to a DVCPRO HD deck, and if so will I need anything ex