How use Email Response to +1000 profile?

Hi,
We have a requirements business, which our 1000 users will left use webmail/outlook. These users will only use Siebel to send/receive emails, but each employee we'll use a email account, so we'll have 1000 profiles using Email Response.
Oracle Support don't recommend use a huge number of profiles. But they don't recommend another solution.
ANYONE ALREADY IMPLEMENT THIS TECHNOLOGY? HOW CAN I USE SIEBEL, WITHOUT USE A OUTLOOK OR A WEBMAIL???
Features:
Siebel 8.0 - Windows 2003 Server - SQL Server 2005.
EMAIL Server - Send Mail server using POP and SMTP protocols.
Thank you!
Roberto Ohara

If you know how to have an email sent to you as the site owner, then you know how to have another email sent to the submitter, its the same code with some different destinations.  So for example, if you have this for your script (assuming php) to process the information to be sent to you
$fname = ($_POST['fname']);
$lname = ($_POST['lname']);
$email =  ($_POST['email']);
//Sending Email to form owner
$header = "From: $email\n"
. "Reply-To:  $email\n";
$subject = "Submission From My Form";
$email_to =  "[email protected]";
$message = "name: $fname . $lname\n"
. "email:  $email\n";
@mail($email_to, $subject ,$message ,$header ) ;
You could simply change it to this: The email, header subject message have a _sub added to it to differentiate from the origianal script. I have also taken out the variables since they are already on the page.
//Sending Email to submitter
$header_sub = "From: $email\n"
. "Reply-To:  $email\n";
$subject_sub = "Submission From My Form";
$email_to_sub =  "$email";     /*      This has been changed to the email address of submitter*/
$message_sub = 'Put whatever message you want here.';
@mail($email_to_sub, $subject_sub ,$message_sub ,$header_sub ) ;
Now with both scripts, the owner and submitter get an email.
Gary

Similar Messages

  • E72 - How Use email with 3G or WLAN connection

    1) CONNECTION CONFIGURATION
    To configure the Phone to prompt always the selection of Access Point to use, you should go here:
    Menu -> Ctrl. Panel -> Settings -> Connection -> Destinations.
    then, with in the Options menu, select Default Connection, and set it as ASK ALWAYS.
    2) EMAIL CONFIGURATION 
    Each email account allow the configuration of the default "Destination" that should be used:
    Menu -> Email -> Settings -> "Your Account" -> Mailbox Setting -> Advanced Mailb. Settings ->
                      - > Incoming email -> Access point in use := ASK ALWAYS
                       -> Outgoing email -> Access point in use := ASK ALWAYS
    If you use the Push Email functionality, the configuration of access point is here:
    Menu -> Email -> Settings -> "Your Account" -> Account Settings -> Account Information -> Access Point 
    But for this functionality it's not possible to set as ASK ALWAYS, you should configure a fixed access point.
    I hope that now you are able to use the email (not only email, but all apps) with the correct connection.
    Bye from Italy.
    Edi

    Hi, Thanks for the info.... I also looking for the solution to set/assign "connection group" instead of define single connection... but i guess this is not feasible in current firmware... hope to available future firmware relase.
    Regards,
    Anandharaj
    www.raj2u.net :: E72-1 | RM-530 | 023.007

  • I have an "old" Apple ID set up 13 years ago.  Apple has now gone to using email address as the apple ID.  I have apps to update and they ask for old ID.  it does not exist.  How can I get the ID on the app changed to the new apple ID

    I set up an apple id many years ago when itunes was established.  Within the past year or so, Apple has changed to using email address as user id.  My problem is that I have many applications that I can not update due to the fact that it is asking for the password of the old ID.  It does not exist anymore.  Any ideas on how to get the new apple id associated with the application without deleting the application.  Several of these apps I purchased.

    You can not merge accounts.
    Apps are tied to the Apple ID used to download them, you can not transfer them.

  • How do I renew a provisioning profile that has expired on my phone? I use an app for the company I work for and I cannot open it because it says the provisioning profile has expired.

    How do I renew a provisioning profile that has expired on my phone? I use an app for the company I work for and I cannot open it because it says the provisioning profile has expired.

    i'm not quiet sure atm but should normally work like this:
    connect to itunes store -> log out with ur account (upper right corner where ur apple id is displayed) -> sign in with ur wifes apple id -> activate computer (store->activate this computer)
    normally it should work this way but ur wife wont be able to use apps or music within itunes library purchased with the other apple id

  • My iPad Mini iOS7 is showing only Apple Logo which happened during software update. I tried to restore using iTunes but it asking me to response from iPad. But my ipad only shows apple logo. How can i response? How to solve this problem?

    My iPad Mini iOS7 is showing only Apple Logo which happened during software update. I tried to restore using iTunes but it asking me to response from iPad. But my ipad only shows apple logo. How can i response? How to solve this problem?

    FORCE IPAD INTO RECOVERY MODE
    1. Turn off iPad
    2. Turn on computer and launch iTunes (make sure you have the latest version of iTune)
    3. Plug USB cable into computer's USB port
    4. Hold Home button down and plug the other end of cable into docking port.
    DO NOT RELEASE BUTTON until you see picture of iTunes and plug
    5. Release Home button.
    ON COMPUTER
    6. iTunes has detected iPad in recovery mode. You must restore this iPad before it can be used with iTunes.
    7. Select "Restore iPad"...
    Note:
    1. Data will be lost if you do not have backup
    2. You must follow step 1 to step 4 VERY CLOSELY.
    3. Repeat the process if necessary.

  • How to disable the previously entered user ID's that automatically appear. For example ; when logging into email , first letter of user ID promts the previously used email user IDs... Want to disable this feature---How can ot be done ?

    Question
    How to disable the previously entered user ID's that automatically appear. For example ; when logging into email , first letter of user ID prompts the previously used email user IDs... Want to disable this feature---How can it be done ?

    *Click the (empty) input field on the web page to open the drop down list
    *Highlight an entry in the drop down list
    *Press the Delete key (on Mac: Shift+Delete) to remove it.
    *http://kb.mozillazine.org/Deleting_autocomplete_entries
    * Tools > Options > Security: Passwords: "Saved Passwords" > "Show Passwords"
    * Tools > Options > Privacy > History: "Remember search and form history"
    * https://support.mozilla.com/kb/Remembering+passwords
    * https://support.mozilla.com/kb/Form+autocomplete

  • How to use email function in crystal report ?

    Post Author: kudo
    CA Forum: .NET
    Hi I'm a novice by touching .net not more than 2 months. Can somebody guide me how to use email function provided in crystal report components?(Better put a sample code so that I can understand well.)  ps: I'm using VS2005 VB.net.Thanks.

    Post Author: mewdied
    CA Forum: .NET
    'EXPORT to EMAIL        ''' Code for exporting the report to Mapi (.Net Windows application)        ''' *For a Web application you must export to disk as a PDF file first.
            crReportDocument.Load(Application.StartupPath + "\World Sales Report.rpt")        crMicrosoftMailDestinationOptions = New MicrosoftMailDestinationOptions        With crMicrosoftMailDestinationOptions            .MailCCList = "[email protected]"            .MailToList = "[email protected]"            .MailSubject = "Attached exported report"            .UserName = "admin"            .Password = "password"        End With
            crExportOptions = crReportDocument.ExportOptions        With crExportOptions            .DestinationOptions = crMicrosoftMailDestinationOptions            .ExportDestinationType = ExportDestinationType.MicrosoftMail            .ExportFormatType = ExportFormatType.PortableDocFormat        End With
            'Add some error handling        Try            crReportDocument.Export()            MsgBox("Report exported successfully.")        Catch err As Exception            MessageBox.Show(err.ToString())        End Try
    Hope this helps

  • How to use bapi response in XI

    HI ALL,
             Can any one suggest me, how to use bapi response in XI as a sender.
    I m using bapi BAPI_BCA_BANKSTATEMENT_EXECUTE , I am executing  this bapi manually ,but want to use this BAPI RESPONSE in XI as a sender and map it with receiver.
    can i have any idea about how to do it, or can i have the idoc which is used by this bapi BAPI_BCA_BANKSTATEMENT_EXECUTE.
    THANX
    HONEY

    Hi Honey,
    Have a look at these
    -Configuring the Sender RFC Adapter - step by step
    /people/michal.krawczyk2/blog/2005/03/29/configuring-the-sender-rfc-adapter--step-by-step
    -Troubleshooting - RFC and SOAP scenarios
    /people/shabarish.vijayakumar/blog/2008/01/08/troubleshooting--rfc-and-soap-scenarios-updated-on-20042009
    -sender RFC (forum thread)
    Is it possible to use the RFC sender adapter for asynchronous calls?
    Regards,
    Sreenivas

  • How to add a new custom paper size? I am using a HP Deskjet 1000 J 110a printer.

    How to add a new custom paper size? I am using a HP Deskjet 1000 J 110a printer. I am using Windows XP home edition. The Custom option itself is not appearing in the process of selecting paper sizes in Printing preferences. I have installed this printer just today, but I bought it eight months back in Dubai. Could there be chance that since I purchased it in Dubai and I am using it in India, the software's not functioning properly. 
    Can you please help me with this problem immediately? Reply soon...

    Hi RajeshPujara,
    Please refer the link below to know the paper size supported by this printer.
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c02231304&tmp_task=prodinfoCategory&cc=us&dlc=en...
    May I know the size of paper you are trying to print.
    Although I am an HP employee, I am speaking for myself and not for HP.
    --Say "Thanks" by clicking the Kudos Star in the post that helped you.
    --Please mark the post that solves your problem as "Accepted Solution"

  • How can I copy and paste a long page here without using email?

    How can I copy and paste a long page without using email?

    Thanks for replying. Actually I want to copy/paste a recipe from a website so I can keep the recipe. On p 39 it tells how to copy/paste, which I do a lot already, but it doesn't tell where to paste it so I can access or print it whenever I want. It's kind of a long recipe. Too long to type out. Any ideas for that?

  • How use different email to get replies upon sent email

    how use different email to get replies to, upon sent email, than the email i check mail for/mail server???

    if email i check mail box is [email protected] to send email and get replies to, with email differ eg [email protected]

  • HT2101 I can't find the keyboard by using iMessage, but I can by using email or whatsapp? How I reset the keyboard on iMessage?

    I can't find the keyboard by using iMessage, but I can by using email or whatsapp? How I reset the keyboard on iMessage?

    Did you tap in the box at the bottom of iMessage?
    If you did and no keyboard is showing: Do a reset
    Reset: Hold down the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears. Note: You will not lose any data
    If that didn't helped, double tap Home button, delete the Message app and reset again.

  • How can I specify SMTP Email Server userID and password when using Email VIs?

    How can I specify SMTP Email Server userID and password when using Email VIs included in Internet Toolkit?

    Hi,
    A similar question was posted on Discussion Forums soem time back. Please see the link below.
    http://exchange.ni.com/servlet/ProcessRequest?RHIVEID=101&RPAGEID=135&HOID=506500000008000000C7B00000&UCATEGORY_0=_49_%24_6_&UCATEGORY_S=0
    You would find the last post in the above thread quite useful where it has a link to OpenG code. I am also copying that link for your reference.
    http://www.openg.org/tiki/tiki-index.php?page=OpenG+Internet+Connectivity+Tools
    Please feel free to respond to this post with any questions/comments you may have.
    Regards,
    Ankita A.
    National Instruments

  • How can I change my apple profile picture using iphone5?

    How can I change my apple profile picture using iphone5?

    Your "Apple Profile Picture" where? When do you see this picture?
    Cheers,
    GB

  • I used to be able to see how many emails I had, it showed next to my little envelope on my toolbar but now it isn't there. I can't figure how to get it back. Help!

    I used to be able to see how many emails I had on my toolbar next to the envelope but now it doesn't show & I can't figure how to change it. Help!

    That feature is not built into Firefox, in fact Firefox has no email features. Check your add-ons to see if any of them offer this feature.

Maybe you are looking for

  • Can't log in to server following SP install and configuration

    Good morning!  I've got an interesting one that's had us scratching our heads here for the past several weeks. We're trying to build out a new Sharepoint 2013 farm on server 2012 (have attempted both 2012 and R2 with the same results) and have run in

  • Updating data in input filed

    Hi Iam new to WD java i have one issue ie, I have one input field name is FIRST in that I will select one value u2026..  and I have other input filed that is SECOND I will select one value Based on this two fields I have one more filed called THIRD.

  • Can you auto-attach files in a PHP form?

    Hi there, Have been looking over everywhere for a solution to my problem. I am going to try and be as clear as I can about the problem. I have had some experience making simple PHP forms that let the user put their name, email, subject and body text

  • Crashed twice since recent upgrade.

    Ever since I upgraded to 6.0.2 I have been having trouble. If any other app is open and iTunes starts to update podcasts my computer freezes. Twice now my Library database file has been damaged, the first time iTunes was able to recover itself, and c

  • Report - PO cost commitments on WBS/ Cost Center

    Hi guys- is there a report to list commitments from PO's against as cost centre and/or a WBS element