Sending mail to LOTUS NOTES inbox.

Hi all,
I am working on WORKFLOWS and i need to send a mail to lotus notes inbox. I have got the function module to send the mail.I Created a method for sending the mail. But Where and how to impletement this method in the work flow.
Please through some light on this.
Regards,
Gautham

As Thomas pointed out, you can use regular SMTP mail to send the contents to Lotus Notes. You can use the function module SO_OBJECT_SEND or any of the SAP Office function modules to do this.
Only thing to remember is that the SMTP may have been disabled by your basis team due to security risks involved. An alternative could be a lotus notes connector available from IBM.
Srinivas

Similar Messages

  • Out of office message when sending mail to Lotus Notes from SAP

    Hi,
    Is it possible to have an 'out of office' message when sending mail to Lotus Notes from SAP?
    I'm sending account statements by mail via a modified version of function FI_OPT_ARCHIVE_CORRESPONDENCE. The SAP username is send as a parameter, and later converted to the e-mail saved in the user profile. This works, - but I would like to have an out of office reply if the user I send to is out of office.
    Hope someone can help...
    Regards,
    Lene

    As Thomas pointed out, you can use regular SMTP mail to send the contents to Lotus Notes. You can use the function module SO_OBJECT_SEND or any of the SAP Office function modules to do this.
    Only thing to remember is that the SMTP may have been disabled by your basis team due to security risks involved. An alternative could be a lotus notes connector available from IBM.
    Srinivas

  • Send mails via Lotus Notes using VFP

    Hi all,
    I have an VFP application which is allowing send emails from Lotus Notes. Currently it sends mails from the default account in Lotus notes. But now there is a requirement as follows.
    An email address can be defined from our application. Say
    [email protected] Lotus notes has been configured with two mail accounts such as
    [email protected] and [email protected] and the default email is
    [email protected] Now we have to send emails from our application with
    [email protected] email address. Not the default email address.
    To do this we have to read all email accounts configured in Lotus Notes using VFP. And look for the email address
    [email protected] and mail should be sent with that account. Can anybody guide me how to do this using VFP? Thanks.
    Best Regards,

    This is actually a Notes question. You need to find out whether the Notes automation server provides what you need and how to do it.
    Tamar

  • Can JavaMail send mail to Lotus Notes?

    Can JavaMail send e-mail to Lotus Notes?
    If I can't, is there any alternative method?
    I need it for my J2EE project.
    Thanks!!
    Dan. :)

    Cann you explain how?
    Can you put an example?
    Thanks in advance.

  • Send mail via Lotus Notes R5

    Does anyone have any examples of sending e-mail through Lotus Notes via forms 6i?
    I have searched the forum and there seems to be very few items on Lotus Notes.
    Thanks in advance.
    Lakmal

    Fainaly I found the way.. here is the coding
    PROCEDURE send_email(p_recipient_in IN VARCHAR2,
    p_copy_to_in IN VARCHAR2,
    p_blind_copy_to_in IN VARCHAR2,
    p_subject_in IN VARCHAR2,
    p_text_in IN VARCHAR2,
    p_return_receipt_in IN VARCHAR2,
    p_no_of_attachments IN NUMBER DEFAULT 0,
    p_mood_stamp_in IN VARCHAR2,
    p_view_icon_in IN NUMBER) IS
    -- Local Variable Declaration
    lv_args ole2.list_type;
    lv_db ole2.obj_type;
    lv_doc ole2.obj_type;
    lv_return_receipt VARCHAR2(1);
    lv_session ole2.obj_type;
    lv_attach1 ole2.obj_type;
    lv_attach2 ole2.obj_type;
    lv_mailserver VARCHAR2(200) := 'ew-cmb';
    lv_sqlerrm VARCHAR2(255);
    BEGIN
         lv_session := ole2.Create_Obj('Notes.NotesSession');
         lv_args := ole2.Create_Arglist;
         ole2.Add_Arg(lv_args, lv_mailserver); -- Mail Server
         ole2.Add_Arg(lv_args, 'names.nsf'); -- Mail File
         ole2.Add_Arg(lv_args, 'mail\Lakmal_M.nsf'); Mail File
         lv_db := ole2.Invoke_Obj(lv_session, 'GetDatabase', lv_args);
         ole2.Destroy_Arglist(lv_args);
         lv_doc := ole2.Invoke_Obj(lv_db, 'CreateDocument',lv_args);
         ole2.Set_Property(lv_doc, 'SendTo', p_recipient_in);
    If (p_copy_to_in IS NOT NULL) then
         ole2.Set_Property(lv_doc, 'CopyTo', p_copy_to_in);
    End If;
    If (p_blind_copy_to_in IS NOT NULL) then
         ole2.Set_Property(lv_doc, 'BlindCopyTo', p_blind_copy_to_in);
    End If;
    -- Guidelines for mood stamp as to what argument values should be passed
    -- ''- Normal
    -- P - Personal
    -- C - Confidential
    -- R - Private
    -- F - Flame
    -- Q - Question
    -- G - Good Job!
    -- M - Reminder
    -- J - Joke
    -- T - Thank You!
    If (p_mood_stamp_in IS NOT NULL) then
         ole2.Set_Property(lv_doc, 'SenderTag', p_mood_stamp_in);
    End If;
    If (p_subject_in IS NOT NULL) then
         ole2.Set_Property(lv_doc, 'Subject', p_subject_in);
    End If;
    If (p_text_in IS NOT NULL) then
         ole2.Set_Property(lv_doc, 'Body', p_text_in);
    End IF;
    --To embed attachments add the following lines to code immediately after
    -- setting the 'Body' property :
    If (nvl(p_no_of_attachments,0) = 0) then -- No attachments
         null;
    Else
         lv_args := ole2.Create_Arglist;
         ole2.Add_Arg(lv_args, 'Attachments');
         lv_attach1 := ole2.Invoke_Obj(lv_doc, 'CreateRichTextItem', lv_args);
         ole2.Destroy_Arglist(lv_args);
         lv_args := ole2.Create_Arglist;
         ole2.Add_Arg(lv_args, 1454);
         ole2.Add_Arg(lv_args, '');
         Ole2.Add_Arg(lv_args, 'C:\Install.log');
         lv_attach2 := ole2.Invoke_Obj(lv_attach1,'EMBEDOBJECT', lv_args);
    End If;
    -- 1-Return Receipt
    -- 0-No Return Receipt
    lv_return_receipt := TRANSLATE(NVL(UPPER(p_return_receipt_in), 'N'), ' NY', '001');
    ole2.Set_Property(lv_doc, 'ReturnReceipt', lv_return_receipt);
    If (lv_return_receipt = '1') then
         ole2.Set_Property(lv_doc, 'DeliveryReport', 'B');
    End If;
    -- The following values can be used to set the icon that appears to the left
    -- of the senders name.
    -- 0 - none
    -- 10 - finger with ribbon
    -- 23 - newspaper
    -- 74 - flame
    -- 83 - thumbs up
    -- 85 - happy face
    -- 133 - envelope
    -- 159 - star
    -- 162 - question mark
    -- 163 - investigator
    -- 166 - glasses
    -- 169 - red circle
    -- 170 - gold circle
    If (p_view_icon_in IS NOT NULL) then
         ole2.Set_Property(lv_doc, '_ViewIcon', p_view_icon_in);
    End If;
    ole2.Destroy_Arglist(lv_args);
    lv_args := ole2.Create_Arglist;
    ole2.Add_Arg(lv_args, 0);
    ole2.Invoke(lv_doc, 'Send', lv_args);
    ole2.Destroy_Arglist(lv_args);
    ole2.Release_Obj(lv_session);
    ole2.Release_Obj(lv_db);
    ole2.Release_Obj(lv_doc);
    EXCEPTION
         WHEN OTHERS THEN
         lv_sqlerrm := substr(sqlerrm,1,255);
         Message('Unable to send mail to ' || p_recipient_in);
         Message('Unable to send mail to ' || p_recipient_in);
         Message('Error is : '||lv_sqlerrm);
         Message('Error is : '||lv_sqlerrm);
         Set_Application_Property(CURSOR_STYLE, 'DEFAULT');
         RAISE;
    END;

  • SAPCONNECT Send mail to Lotus Notes

    Hi,
    I would like to know if is possible send mails from SAP to Lotus Notes.
    When I send a mail to other destination by SMTP Node, the process works successfully.
    But if the destination is a Lotus Notes address this process fails.
    Could you help me with this issue?
    Thank you very much in advance.
    Best regards.
    Emilio Dorado.

    Hi Alfredo,
    Yes its posible, please install Lotus Notes Domino MTA.
    And configure the notes.ini
    $SapDestination=MAIL_GATEWAY_CRMXXX
    $SapClient=XXX
    $SapUsername=MAIL
    $SapLanguage=E
    $ObjServerSearchChars="_"
    $ObjServerReplaceChars=" "
    $ObjClientSearchChars="@ "
    $ObjClientReplaceChars="&_"
    $ObjServerDontAttachBody=0
    $ObjServerAddressIsInternet=1
    $ObjServerMinConfirmation=6
    $ObjServerChangeRAWtoTXT=1
    Regards,
    Fendi Suyanto

  • When trying to send mail via Lotus Notes webmail, mail does not get send

    Firefox 4.01, XUL-manager installed.
    Logged in to corporate webmail, can see mails etc. I can create a mail (new, reply, etc.) but when I hit the send button, I get a popup asking if a copy needs to be archived. no matter if I say yes or no, the mail does not get send. Also saving as draft does not work.

    Hi,
    yes smtp is a standard and I think you could use this with almost every smtp server.
    If your smtp server doesn't require authentication you can access it without an authenticator
    I think...
    Best regards,
    Jens

  • HOWTO: send a mail through Lotus notes by Java Code

    Dear All,
    I have requirement with me, where i have to write a java code which will send a mail from lotus notes .
    Could you please provide me sample source code and different options for implementing this .

    Generally, whatever program you use to read mail, it will ultimately be sent by a "Mail Transfer Agent" which understand SMTP. I've got Lotus Notes here as my mail reader, but when my programs send mail they use java mail, and send the mail as SMTP using the appropriate mail server (sometimes called the "smart host"). It the mail is for my mailbox the MTA then forwards it to the Lotus Notes mail store.

  • Sending email via Lotus Notes

    Does anyone have any examples of sending e-mail through Lotus Notes via forms 6i? I have searched the forum and there seems to be very few items on Lotus Notes.
    Thanks in advance.
    Jeff

    A simple way is the host-command.
    The command-string is "start mailto:address?body='Text'&subject='Text"
    The length of host-string is limited.
    Text_io can help: Create the cmd-file and then start it thru the host-command.
    Also simple: Create a html-file x.html and start this via host(Start x.html')
    I am interested und this topic, too, because I can't attach files with this simple methods.
    Wolfram

  • Java program to send email from lotus notes

    Hello,
    Please anyone suggest me how to send email from lotus notes using java.
    Thanks.

    I don't understand the question. Are you asking:
    1. How do I send e-mail from Lotus notes manually? Press the Send button.
    2. How do I send e-mail from Java? Look into the Java Mail API. Doesn't require Lotus Notes (or any other e-mail client, for that matter).
    3. How do I send e-mail to a Lotus Notes address? Just send e-mail to the address (see # 2 above). Nothing special required just because the recipient uses Lotus Notes. FYI: I use Lotus Notes (though I hate it) because it's our company's standard & have written Java apps that send e-mails to Notes. The only time I've had to be aware the recipient was a Notes client was when I was sending HTML formatted messages; then I had to pay attention to the limitations of Notes' brain dead HTML parser.

  • Mail to lotus notes using java

    mail to lotus notes using java
    -sun_jothi

    And as others have said--it doesn't matterwhether
    the recipient uses Lotus notes or Outlook or elmor
    pine or a webmail client to read his mail. Youdon't
    care what client you're mailing to.Of course jverd uses posh MUAs like elm and pine
    'cause he's so arrogant.
    Real programmers on the other hand, use mail.
    ;)I don't read email. There's nobody on this planet
    that has anything interesting enough to say to make
    it worth my time.<Marvin>
    Here I am, brain the size of a planet...
    </Marvin>

  • 3GS 3.0.1 - Cannot send mail, You did not specify any recipient

    Whenever I send a message from iPhone with MobileMe account and then resync the account with server (Push is off), the very same message, already sent with success, appears in Outgoing folder and error pops up saying:
    *Cannot send mail, You did not specify any recipient*
    See the picture below:
    http://gitarzysta.com/iphone/error1.jpg
    It cannot be deleted, either - error message pops up saying: *Unable to move message*
    http://gitarzysta.com/iphone/error2.jpg
    Important: it was sent and received successfully. It is just either iPhone, MobileMe or both that have problems to sync correctly.
    On my Mac that I sync with this MobileMe account all is fine.
    What can be wrong? There was an old topic here, from 2008, where several users of 3G had exactly the same issue, but no root cause or solution was provided.
    Thanks!
    Message was edited by: gitarzysta

    Try deleting and manually recreating the account on your iPhone.
    If you transferred the account settings from your Mac via the iTunes sync process - selected under the Info tab for your iPhone sync preferences with iTunes, deselect this for your iPhone sync preferences followed by selecting Apply before doing so.

  • 'Error Sending Mail :send_mail.ksh: not found'

    Hi all,
    com/btw/pricemaker: under this directory i have kept all the required class files and also the shell script.
    R_ConcatenatorRatingComponent.class
    InputProcessor.class
    InputProcessor$FilesHandler.class
    InputProcessor$BatchStringTokenizer.class
    send_mail.ksh
    set_mail_details.ksh
    OutputGenerator.class
    and i created a jar file
    $jar -cf pmbtw.jar com
    when i run the prog i am getting the above specified error.
    Can any please help me.

    I wrote a function in java to send a mail ,
    if (emailFile.exists())
                sendMail(emailFile.getAbsolutePath());
    public void sendMail(String filePath)      {
           String mailIds = "[email protected]";
           String from = "[email protected]";
           try{
                String sub="<PM>:Alert there are some data mismatch in the file";
                      //subject=subject.replace(' ','~');
                 String body = "These are the records in which NTSCLI Rate is greater than or equal to VOIP rate.";
                   //body=body.replace(' ','~');
                 String exec_command = "send_mail.ksh "+subject+" "+body+" "+mailIds+" "+filePath;
                              Process p = Runtime.getRuntime().exec(exec_command);
                   int exitVal=p.waitFor();
                   if (exitVal != 0)
                        System.out.println("Error Sending Mail: script was not executed");
              catch(Exception e)
                  System.out.println("Error Sending Mail: " + e.getMessage());
         }please any one help me :-(

  • Cannot Send Mail - You did not specify any recipients

    Hi all,
    I have an email stuck in my outbox which has the "This message has not been downloaded from the server" issue I have seen on this forum. Everytime I go to my email folders list, I get the 'Cannot Send Mail - You did not specify any recipients' error message. I am unable to trash it, move it as I get the 'Unable to Move Message' error.
    Any ideas how I can remove this message and clear my outbox!?
    Thanks,

    Me too! This is very annoying. I LOVE Apple but this new 3G keeps on throwing curveballs at me. I, too, deleted my e-mail account from my iPhone to get rid of this "unsent message" but with Apple you shouldn't have to do that! Certain that it will happen again, I'm interested if anyone comes up with any fixes so that next time we don't have to delete/add e-mail account.

  • How to send a mail to Lotus Notes R5 from Report Builder 3.0.5.8.0 ?

    Dear sir,
    I try to send a mail via Report Builder, and I got the following error message:
    REP-4201:Error occured while initialzing the mail subsystem.
    REP-4202:There is the problem with
    the mail System.
    We use the Lotus Notes R5 mail, not Microsoft Outlook or exchange. Could the Report Builder support it?
    Thanks.
    Lisa

    Hi!
    1. Make sure no one else has opened the same file.
    2. Dont put image on your report.
    later
    Mircea Paciu (guest) wrote:
    : In Report builder 3.0.5.8.0 I can't open some of my *.rdf
    files.
    : When trying to open no error message is generated and the "open
    : dialog" reappears.
    : Some other files can be normally open.
    : Does anyone know how to solve this?
    null

Maybe you are looking for

  • Links take more than one click (at least two) to open

    I'm experiencing a very strange problem with FF where I have to click links more than once (at least twice) to open them (e.g in Google search results). I have tried starting in safe mode to check whether it was a bad addon. That didn't work. I tried

  • Had Trouble Downloading the .dng from Adobe Store...Mac.

    Just want to give a heads up to everyone...well at least to everyone on Mac with latest OS 10.4.8. Purchased Lightroom about 30 minutes ago and download went fine for both Mac and Windows versions. There is a third file named Lightroom_597.dng that w

  • What's the best program for HS Students to do reports with?

    Hi. I am so confused with all the new programs out there that I just don't see what I need or know what to look at! I have a teenager in High School that is always doing school reports and I need to download a program so that she can save and print o

  • Is It Possible To Start a Process Flow on Receipt of an Email?

    Hi Does anyone know if you can trigger the start of a process flow once an email has been received? thanks ...

  • How to increase patricion HD space with Bootcamp?

    After installing windows on BOOTCAMP I realize I need more space for OSX. Everything works fine, games and apps, but OSX got far too crowded Any way to rearrange the spaces without formating or using external apps? My specs... Help is very much appre