Sending Email from Oracle CRM OD but..

Hi All,
I have a request that I guess is quite common in the community.
When I create an appointment/task in Oracle CRM OD I define the appointment of course and I define a list of users that I would like to involve.
Actually there is no notification about the fact that I'm entering a new appointment in the agenda of my collegues.The same situation when I have to change time/day for this appointment. My question is: there is a way to notify the others users involved in an appointment when I change time/date? Thanks.Massimo
Example: I create an appointment and I insert in the user list John and Bob. Of course John and Bob calendar will be populated with my appointment (without any notification). Now, if I need to change the appointment, how John and Bob can be notified about the new appointment schedule?
Edited by: user12203357 on 26-apr-2011 6.28

This functionality is not available in CRM On Demand at this time. However, CRM Desktop which provides this functionality will be available in R19.

Similar Messages

  • Cannot send emails from my new ipad but can receive them. iPhone 5 ok. Both iOS 6

    Can't send emails from my new ipad but can receive them. I've checked the settings and username and password are setup correctly. My email account is with tiscali. My iPhone 5 is setup the same but works ok.

    iOS: Unable to send or receive email
    http://support.apple.com/kb/TS3899
    Can’t Send Emails on iPad – Troubleshooting Steps
    http://ipadhelp.com/ipad-help/ipad-cant-send-emails-troubleshooting-steps/
    Setting up and troubleshooting Mail
    http://www.apple.com/support/ipad/assistant/mail/
    iPad Mail
    http://www.apple.com/support/ipad/mail/
    Try this first - Reset the iPad by holding down on the Sleep and Home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons. (This is equivalent to rebooting your computer.)
    Or this - Delete the account in Mail and then set it up again. Settings->Mail, Contacts, Calendars -> Accounts   Tap on the Account, then on the red button that says Remove Account.
     Cheers, Tom

  • TS3899 I have set up two email accounts on my iphone4, one with tiscali, my ISP, and the other on gmail. I am able to receive emails on both accounts, and can send emails from my gmail account, but am "Unable to Send Email" from my tiscali (talktalk) acco

    I have set up two email accounts on my iphone4, one with tiscali, my ISP, and the other on gmail. I am able to receive emails on both accounts, and can send emails from my gmail account, but am "Unable to Send Email" from my tiscali (talktalk) account. I get the error message "A copy has been placed in your Outbox. The sender address "name"@tiscali.co.uk was rejected by the server".

    Hi apmichael,
    If you are having issues sending email from one of your mail accounts on your iPhone, you may find the following article helpful:
    iOS: Troubleshooting Mail
    http://support.apple.com/kb/ts3899
    Regards,
    - Brenden

  • ACL error when sending email from Oracle 11g

    Hi,
    It returned something like "error...ACL security" when I tried to send email from Oracle 11g. Is there any security thing that I need to release in Oracle 11g? I used to send emails from Oracle 10g and didn't find any problem.
    Thanks.
    Andy

    In Database 11g Oracle introduced Network Access Control Lists (ACLs) to protect the database from users using the many internet-capable packages such as UTL_INADDR, UTL_HTTP, UTL_TCP, etc.
    Read all about it in the docs and look at the code demos here:
    http://www.morganslibrary.org/library.html
    under DBMS_NETWORK_ACL_...

  • How to sending email from Oracle 6i(Forms)

    How can I send email from Oracle Forms(6i).
    I need to send email to a distribution list(multiple email addresses).

    send email of multiple email address
    [email protected],[email protected],[email protected]
    create or replace function mailout
    (sender in varchar2,
    recipient in varchar2,
    ccrecipient in varchar2,
    subject in varchar2,
    message in varchar2) return number
    is
    crlf varchar2(2) := chr(13)||chr(10);
    connection utl_smtp.connection;
    mailhost varchar2(50) := 'Add email server Ip Address here';
    header varchar2(4000);
    v_num number :=1;
    str number:=0;
    email varchar2(50);
    begin
    connection := utl_smtp.open_connection(mailhost,25);
    header := 'Date: '||to_char(sysdate,'dd mon yy hh24:mi:ss')||crlf||
    'From: '||sender||' '||crlf||
    'Subject: '||subject||crlf||
    'To: '||recipient||crlf||
    'Cc: '||ccrecipient||crlf||message;
    utl_smtp.helo(connection,mailhost);
    utl_smtp.mail(connection,sender);
    utl_smtp.rcpt(connection,recipient);
    while (instr(ccrecipient,',',1,v_num)>0) loop
    email:=substr(ccrecipient,str+1,instr(ccrecipient,',',1,v_num)-str-1);
    dbms_output.put_line(email);
    utl_smtp.rcpt(connection,email);
    str:=instr(ccrecipient,',',1,v_num);
    v_num:=v_num+1;
    end loop;
    utl_smtp.open_data(connection);
    -- utl_smtp.write_data(connection,header);
    utl_smtp.write_data(connection,'MIME-Version:1.0'||crlf||'Content-type:text/html'||crlf||header);
    utl_smtp.close_data(connection);
    utl_smtp.quit(connection);
    return 0;
    exception
    when utl_smtp.invalid_operation then
    dbms_output.put_line('Invalid Operation in SMTP transaction');
    return 1;
    when utl_smtp.transient_error then
    dbms_output.put_line('Temporary problem with sending email ');
    return 2;
    when utl_smtp.permanent_error then
    dbms_output.put_line('Permanent problem with sending email ');
    return 3;
    end;

  • How to sending email from Oracle Forms

    How to sending email from Oracle 6i(Forms)
    I need to send email to a distribution list(multiple email addresses).

    send email of multiple email address
    [email protected],[email protected],[email protected]
    create or replace function mailout
    (sender in varchar2,
    recipient in varchar2,
    ccrecipient in varchar2,
    subject in varchar2,
    message in varchar2) return number
    is
    crlf varchar2(2) := chr(13)||chr(10);
    connection utl_smtp.connection;
    mailhost varchar2(50) := 'Add email server Ip Address here';
    header varchar2(4000);
    v_num number :=1;
    str number:=0;
    email varchar2(50);
    begin
    connection := utl_smtp.open_connection(mailhost,25);
    header := 'Date: '||to_char(sysdate,'dd mon yy hh24:mi:ss')||crlf||
    'From: '||sender||' '||crlf||
    'Subject: '||subject||crlf||
    'To: '||recipient||crlf||
    'Cc: '||ccrecipient||crlf||message;
    utl_smtp.helo(connection,mailhost);
    utl_smtp.mail(connection,sender);
    utl_smtp.rcpt(connection,recipient);
    while (instr(ccrecipient,',',1,v_num)>0) loop
    email:=substr(ccrecipient,str+1,instr(ccrecipient,',',1,v_num)-str-1);
    dbms_output.put_line(email);
    utl_smtp.rcpt(connection,email);
    str:=instr(ccrecipient,',',1,v_num);
    v_num:=v_num+1;
    end loop;
    utl_smtp.open_data(connection);
    -- utl_smtp.write_data(connection,header);
    utl_smtp.write_data(connection,'MIME-Version:1.0'||crlf||'Content-type:text/html'||crlf||header);
    utl_smtp.close_data(connection);
    utl_smtp.quit(connection);
    return 0;
    exception
    when utl_smtp.invalid_operation then
    dbms_output.put_line('Invalid Operation in SMTP transaction');
    return 1;
    when utl_smtp.transient_error then
    dbms_output.put_line('Temporary problem with sending email ');
    return 2;
    when utl_smtp.permanent_error then
    dbms_output.put_line('Permanent problem with sending email ');
    return 3;
    end;

  • Send email from oracle

    Dear member & developers
    I want to send e mail from oracle application. If anybody knows, how to do this. please write or send a sample application or forms or database sql. I don't restricted to any application version like 10g or 11g same as database...
    I seriously need it.
    Thanks in Advanced.

    As Francois indicated - there are multiple examples around the internet and in the forums. Any email solution you choose is going to require that you have access to a valid email server (SMTP, POP3, etc). Also, the solution is dependent on "Where" you want to send the email from. I prefer a database solution because this makes it available to your entire database application, but you can use a Java email method (using Forms PJC or Java Bean) or you can OLE link to Microsoft Outlook.
    Take a look at Send Email from the Database. I wrote this package based on the DEMO_MAIL package provided by Oracle (via OTN) and stream line things a bit. There is an example of how to use the package in the article.
    Take a look at Send email with HTML body and local file attachements article on Franscois's web site for an example of sending email from an Oracle Form using Java.
    If you need to use Outlook - search the forum. I don't consider this to be a reasonable method so I don't use it or recommend it. I'm sure it works fine for others, I just think being dependent on a application installed on the client is not a solid solution. That's just my opinion. ;-)
    I search through out the net. Didn't get any tutorial video or any working materiel. I disagree with this statement - I did a quick Google search and found many examples (no videos) and demo's.
    Hope this helps,
    Craig B-)
    If someone's response is helpful or correct, please mark it accordingly.

  • Send email from oracle xe table

    Hi, just a question, does any one know if oracle has any built in email functionality ?
    I have an oracle xe table with email addresses in it, I want to send emails using the addresses.
    Yes I know I can connect to it with many things and send emails, but I was wondering if there is any way to send directly from oracle ?

    Jay wrote:
    Hi, just a question, does any one know if oracle has any built in email functionality ?
    I have an oracle xe table with email addresses in it, I want to send emails using the addresses.
    Yes I know I can connect to it with many things and send emails, but I was wondering if there is any way to send directly from oracle ?They do, it's outlined in the documentation (i assume you're using XE).
    http://download.oracle.com/docs/cd/B25329_01/doc/appdev.102/b25309/wrkspc.htm#HTMDB08010

  • Sending email from oracle

    Hi all
    I have a requirement to send emails to managers internal to the company from oracle whenever the orders placed by customers are not acknowleded in certian time like within 6 hrs or so.I could figure out the logic but dont know how to send an email from oracle.
    my logic:
    creating a job which will be scheduled to run every 4 or 5 hrs.this job runs a stored procedure which does all the logic and sends an email.
    any suggesions or source is greatly appreciated.
    thanks and regards in advance
    yugandhar

    Hi,
    for scheduling a job use dbms_job package and to send emails use utl_smtp package is available oracle 8.1.6 and above hope this helps you
    prem

  • TS3276 can receive and send email on ipad  and can send email from mac to ipad but cannot read emails on mac

    mac was set up with email account. now i am unable to read my emails, tried sending test email from mac to ipad and it worked sent email from ipad to mac but did not register why? when it use to work up until tuesday. checked email sever settings and all seems to be the same as the ipad so seems ok

    mac was set up with email account. now i am unable to read my emails, tried sending test email from mac to ipad and it worked sent email from ipad to mac but did not register why? when it use to work up until tuesday. checked email sever settings and all seems to be the same as the ipad so seems ok

  • Sending email from Oracle through Lotus Domino Server

    Hi,
    I would like to know whether it is possible to send an email from Oracle through a Lotus Domino Server(acting as mail server). If yes, please provide me with the details.
    Thanks in advance

    Have a look at the database UTL_SMTP package

  • Old but new Q: Cannot send email from Mac Mail application but computer tells me I'm online

    I know this is an "old" issue for many, but I cannot find the solution to my problem.
    A couple of months ago I moved to a new flat--suddenly I could not send emails anymore from my Mac Mail app, although I could receive them. I called Comcast, my Internet provider, who said it was my email server's problem. My email server is icloud, so I talked to a Mac tech guy who did remote desktop troubleshooting and said everything was set up correctly, etc., so I will have to talk to Comcast again. I called Comcast again and they told me again, it is not their issue.
    So this is what happens: When I try to send an email, I get the spinning circle in the mailbox bar, and then it tells me after five minutes of spinning that icloud is offline. However, when I do a further check of the diagnostics, the light is green and says that yes, in fact I am connected/online. Note: I can send and receive fine on webmail, but I do not want to keep using webmail at home. It is very inconvenient.
    I called Mac support again, and they told me I should find my solution online; otherwise, I can pay $20 to have someone remotely troubleshoot for me. Of course, I could not find the answer online. I am quite frustrated and annoyed at this point. Is it a port issue? Is it an OS issue? Mind you, I only have this problem at home, nowhere else. I take my laptop to a café, to a friend's place--I can send emails just fine. This leads me to believe that it's a Comcast issue, although they deny it.
    Any thoughts would be deeply, deeply appreciated! Thank you!!

    How about some free much-needed advice on how I can
    start receiving emails again!
    This indicates you were able to receive email with
    your Verizon account previously with the Mail.app?
    If so, try running Keychain First Aid on your login
    Keychain.
    http://docs.info.apple.com/article.html?artnum=151548
    Open Keychain Access, located in
    Applications/Utilities.
    Choose Window > Keychain First Aid.
    Select your login Keychain, enter your password,
    select Repair and then Start.
    This is Trevor from the first post and I figured it out:
    Go into mail - preferences - and delete the email account in question - the window will tell you that you'll lose all your saved mail, etc - you can save it if you like.
    Then click on yes and you create a new mail account using your same incoming/outgoing settings. And, like magic, it works!
    Try it - and if you want to save any mail before deleting your affected account, do it.
    All the best!
    Trevor "

  • Can no longer send emails from Mail on iMac but CAN on MBP

    Initially, when Mobile Me ended, my email was changed to work with iCloud and it worked fine for about seven months or so.  Then, it started giving me an error message (on my iMac, my Macbook Pro, and my iPhone) that said it rejected my password. After a long phone call with Apple, they said that the iCloud server was having problems with certain accounts.  They seemed to have fixed it and the mail started working again. 
    Then it stopped sending email BUT ONLY on my iMac (message says that stmp rejects my password).  I have the exact same settings (and password) on my Macbook Pro and the iCloud/Mac/Me mail is received and sent without trouble.  I have Snow Leopard on both computers and the same version of Mail on both computers. My Thunderbird email client receives and sends my iCloud/Mac/Me email on my iMac without a problem.  Apple Mail receives and sends my other email addresses (gmail, hover) without a problem.  Gmail is set to POP and Hover is set to IMAP.
    What I have tried:
    1) I have deleted the iCloud mail account and re-created it using instructions from Apple Support online as well as Mac users on the forums.  (I am not an IT expert, but I can follow instructions.)
    2) I have removed all saved iCloud/Mobile Me passwords from my keychain (both incoming and outgoing) in case there was an old one stored there.
    3) I have created a new IMAP account.  I have created a new Mobile Me IMAP account. I am not given the option in Snow Leopard of creating a new iCloud account -- but as I said the iCloud account (called Mobile Me IMAP) is WORKING on my Macbook Pro.  
    If I were having the problem with the Macbook Pro rather than the iMac, I'd just go to the Genius Bar and let them handle it.  But, if I can do it without packing up and carrying my desktop, that would be preferable. 
    Any suggestions?

    Hi Lanny,
    Thank you for this.  I followed it "to the letter".  In fact, I tried it twice to make sure I didn't miss any steps. Both times, everything went as described until STMP.  When I got to the STMP page and hit "create", it once again told me that the STMP server name and/or password were "incorrect".  My iCloud mail arrives fine, but nothing can go out because the outgoing mail does not recognize my password (or at least that seems to be what is happening.) I tried to give up and set Thunderbird up as my default mail client, but iPhoto doesn't recognize it and when I want to email a photo, it opens Apple Mail. I just do not understand why it works on my MBP and not on my iMac. Nothing was changed on either computer.  It simply stopped sending outgoing mail on the iMac and continues to send out on the MBP. 
    It's a mystery.
    LR

  • Sending email from Oracle Forms with attachments

    Hi,
    Is there any package or option available in Oracle forms to send email with attachments?
    Your reply will be highly appreciated.
    Regds,
    noneda

    There are a couple of ways to send email (with attachements) from Oracle Forms. Check out these links to some examples.
    using OLE2 or CLIENT_OLE2 to access a mail-client via Mail-Api ( Get and set Outlook properties )
    using MAILTO in conjunction with HOST or CLIENT_HOST to "start" a mail-client ( Re: Open Microsoft Outlook new massage with TO containing the email address )
    using UTL_SMTP for database-side-mailing ( Re: Send mail with attachment )
    Hope this helps,
    Craig...

  • Ios 6 does not send email from icloud via Wifi but will do over 3 g

    When I send an email from my icloud account over wifi the email will not go through and I get a message say there is a problem with the server.
    But this only happens when connected to Wifi not 3 g
    I have an Iphone 4s 32gb
    Please help
    thanks

    Hi Mark,
    Sorry forgetting back to you so late, I tried to reply earlier but for some reasin could not find the reply button!
    Anyway no this problem is happening over multiple wifi net works, home and the two at the office and I tried one at my cell provider yesterday as well.
    any help you an offer will be greatfully recieved! Thanks for replying in the first place!
    markwmsn wrote:
    Is this just on one specific wifi network (maybe your home network), or has it failed on several?

Maybe you are looking for