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

Similar Messages

  • 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

  • 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.

  • 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;

  • Send email to lotus notes

    Dear All,
    First of all I don't know if this is the correct forum but I have not seen a specific forum for oracle 8 so I posted the message in this forum.
    I have stored into a table Lotus Notes address and messages.
    I want to schedule a job on Oracle Server that send messages to a Lotus Notes Server.
    Lotus Notes version is 4.6.x and Oracle database is 8.0.5 EE.
    Any suggestion are welcome.
    Bye

    Hi,
    If you want to be able to send email to the distribution list in Lotus Notes from SharePoint, you
    can set the SMTP service address of Lotus Notes server in Central Administration->System Settings->Configure Outgoing email settings->Outbound SMTP Server.
    And you need to set the Lotus Notes to accept anonymous email.
    Here are some similar threads for you to take a look:
    https://social.technet.microsoft.com/Forums/office/en-US/4f40f6de-7c1e-4543-9e48-2058a95ce468/email-setting-configuration-for-domino-server-85?forum=sharepointgeneralprevious
    https://social.technet.microsoft.com/Forums/en-US/04bf7b7a-8797-4e46-b3ca-bddbe5d6d9ba/sharepoint-foundation-lotus-notes-connector-for-outgoing-smtp-mails-?forum=sharepointgeneralprevious
    Thanks,
    Victoria
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Victoria Xia
    TechNet Community Support

  • Send Emails Through Lotus Notes

    Dear Experts..,
    I am developing an object in which I have to send mails to the Users through Lotus Notes.
    The scenario is that..
    1. Smartforms has to me created for different cases.
    2. The corresponding Smartform has to be called based on the Case and it has to be populated with values.
    3. Then the Smartform output has to be converted to HTML Format.
    4. It has to be sent to Lotus notes along with "mail id" and "relevant Subject".
    5. Then I have to receive a acknowledgement from Lotus Notes about the successful delivery of the mail.
    Please explain me how to send the converted Smartform to the users email id (this mail id is a external mail id) through Lotus Notes.
    Thanks in advance.
    Regards,
    Naveen Kumar G

    Dear Experts..,
    I am able to do up to the conversion of the Smartform.
    The remaining is where I got messed.
    I am using a FM 'SO_NEW_DOCUMENT_ATT_SEND_API1'...., but this will send a mail directly.. not through Lotus Notes.
    But I was given a requirement like, I have to use Lotus Notes.
    Please help me in this regard.
    Thank you,
    Naveen Kumar G

  • 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

  • Sending an email from Lotus Notes release 5.0.4a

    I need to write java code for sending an email from Lotus Notes release 5.0.4a.
    Initially, I tried using Lotus Domino Toolkit for java, but the current release, "Lotus Domino ToolKit for Java/Corba release 5.0.8" is not compatible with the notes client/server we are using(5.0.4a).
    Now, I am trying to use "Lotus Domino Toolkit 2.1" which supports notes version 5.0.3 and higher, but I couldnot find out how to use it to send email.
    Is there are other way in which we can connect to Lotus Notes for sending email. I cannot use SMTP as the Lotus Notes administrator is afraid of security issues so there is no possibility that I can connect to Domino server using java mail API by enabling SMTP on the Domino server.
    I would be thankful if somebody can help me to do this.

    First off - This is very "off topic"
    The Domino SMTP server is not hard to lock down. Any Notes Admin worth his/her salt should know how to do it. Try to persuade them to run the SMTP stuff using name and password authentication only, or restrict access to an IP address range. This is all easy stuff.
    Otherwise DIIOP/CORBA is one way to go. If your toolkit jar files don't work with the server then try using the ones on the server. Look in %noteshome%\data\domino\java for the ncso.jar file.
    This works for me on an AS/400 java VM to WinNT/Linux Domino servers of various versions.
    How to create an email using this method is again not difficult. All you really need is a blank database template. You have to create a document with certain fields in it (all documented) and then save it. That's all there is to it.
    Word of warning DIIOP is not very rapid and careless coding can create problems. Ensure that once you have finished a session you make sure you close it else you will have continual connection problems.
    Try searching around the domino/notes groups on how to actually do this.
    SH

  • I can't send emails via mail. I can receive but not send. I have set up gmail on mail. Any ideas?

    I can't send emails via mail. I can receive but not send. I have set up gmail on mail. Any ideas? No problems with the set up previously to this.

    Go to Mail Preferences- Accounts and confirm you are providing Gmail what they require to send and receive mail. And DON'T specify Secure Socket Layer. Some mail accts don't like SSL
    Good Luck to you.

  • Cannot send email via Hotmail through port 587 with Secure Connection (SSL) set

    Something is blocking my attempts to send email (with Outlook Express) via my hotmail.com account. The error I receive is as follows:
    Your server has unexpectedly terminated the connection. Possible causes for this include server problems, network problems, or a long period of inactivity. Account: 'Hotmail', Server: 'smtp.live.com', Protocol: SMTP, Port: 587, Secure(SSL): Yes, Error Number: 0x800CCC0F
    When Hotmail.com first changed over to a POP3 server (Sept 2009), I could send emails through them using port 587, which they require. But then something happened, with no changes on my part, to disable my ability to send.
    I have checked and rechecked my Outlook Express account settings. I can send email through another third-party mail account (at 1&1 Internet.com) using port 587, which does not require setting SSL to yes. I can also ping the Hotmail SMTP server via port 587 and receive a response from it.
    I connect to Verizon DSL via a Westell 327W modem/router. Clearly it is not blocking port 587 without SSL. Does it have the capability to block SSL traffic? Or is the Verizon server the culprit, not allowing emails to be sent via Hotmail.com?
    Two different computers on my LAN have the same problem sending emails via Hotmail.com. I have tried everything the Hotmail people have suggested; at this point they think it is an ISP problem, hence this post. This problem doesn't make sense to me and is driving me crazy. Can anyone help me with this?
    Thanks.

    You can still have your reply address set to your hotmail address. And you don't have to really remember to do anything. Configure your client for the HOTMAIL account with Verizon's outgoing server. It will automatically send via Verizon. You don't reveal your verizon.net address, you are just using their server to transmit.
    If a forum member gives an answer you like, give them the Kudos they deserve. If a member gives you the answer to your question, mark the answer as Accepted Solution so others can see the solution to the problem.
    "All knowledge is worth having."

  • Have just installed ios8 on our iPad. Can no longer send emails via Hotmail. BT email says that if can't work on this device. When will these faults be fixed?

    Have just installed ios8 on our iPad. Can no longer send emails via Hotmail. BT email says that if can't work on this device.
    When will these faults be fixed?

    does it error out or does it just not go through?
    have you tried to delete and then re-add your hotmail address? Using the outlook preset

  • After downloading Firefox 4, I could get to everything , including 2 or my 3 email accounts. But after signing into my work email at Lotus Notes, my mail would not appear !! Why?

    There was no problems with downloading Firefox 4 . I had no problem getting to my mail on bellsouth(Yahoo) or netscape(AOL) but when I signed successfully to my work email on Lotus Notes..my inbox appeared but no mail appeared. I went to Lotus Notes via Explorer and Chrome and did NOT suffer the same result. Sometimes a box appeared saying some sort of error was at fault and sometimes the screen just froze up ?WHY??

    Maybe the "Remote XUL Manager" add-on mentioned in these threads will help?
    [http://support.mozilla.com/en-US/questions/798338 Since I upgraded to Firefox 4, my Lotus Domino Web access program is not working and I can't load emails. | Firefox Support Forum | Firefox Help]
    [https://support.mozilla.com/en-US/questions/814413 The Webmail version of Lotus knows keep giving the following error message: A problem has occurred which may have caused the current operation to fail. How do I fix this? | Firefox Support Forum | Firefox Help]

  • Offline Approvals via Lotus Notes

    We are currently implementing SRM 7.0.
    We have configured off line approvals and the email content is sent correctly to Lotus Notes.
    When the user clicks "Approve" in Lotus Notes, the approval email is not automatically sent to SRM.  The user is presented with a second screen that requires them to press the "Send" button in Lotus Notes.
    We have a few questions:
    Is this the standard function? If yes, can this behavior be changed? 
    If this behaior cannot be changed, can we edit/add text to the blank Lotus Notes email?
    Thanks!

    Hi,
    It depends on how email client handles the mailto action in HTML form.
    Outlook shows dialog box. I think this is related with some security setting in email client side.
    This is received HTML email.
    <FORM name=post_decision accept-charset=UTF-16
    action=mailto:WF-Batch#EBP_GEN_REPLY# method=post encType=text/plain>
    <TABLE>
      <TBODY>
      <TR>
        <TD>
          <!#EBP_GEN_MAILTO_BEGIN#>
          To approve or reject directly from this
          e-mail, click on one of the following buttons (allow program to send e-mail in background):
          <INPUT type=hidden value=00F3D1395134D34D34D3BE3BE38E01512DB5DB5FBE name=TECH_INFO_A>
          <INPUT  type=submit value="Approve by e-mail" name=submit>  
          <INPUT  type=submit value="Reject by e-mail" name=submit>
          <INPUT type=hidden value=444244093D34D34D34EF8EF8E380544B6D76D7 name=TECH_INFO_R>
          <!#EBP_GEN_MAILTO_END#>
        </TD>
      </TR>
      </TBODY>
    </TABLE>
    </FORM>
    Regards,
    Masa

  • Gmail taking ages to send email via mail app

    I bought a MacBook air yesterday and set up my gmail account on the mail app. Everything seemed to be working okay at first but now it's takkng at least five minutes to send a plain text email, one email I tried sending last night didn't send until this morning! I tried changing the SSL port to 25, 465 and 587 not only do they not work but then it stops my mail from moving into the folders or trash, they move and then go back to my inbox.
    Please help!

    Stephen Schulte2 wrote:
    When I am in a hotel out of town or overseas- or just anywhere where I don't have my home ISP - how can I not only RECEIVE but also SEND eMail via my Mail program?
    If your ISP is like mine, it authenticates you for outgoing e-mail by being able to determine that you're accessing the Internet from within their network. If your ISP is so configured, they'll offer the ability to authenticate to their SMTP server with a password. My ISP does not.
    However, MobileMe does provide its own authenticating SMTP server that you should be able to use from anywhere. Try an SMTP server of smtp.mac.com (smtp.me.com will probably also work) with settings of "Use default ports", "Use Secure Sockets Layer (SSL)", and "Authentication" by password, your "User Name" the part of your MobileMe ID before the "at" sign, and your password your MobileMe password.
    For non-MobileMe outgoing e-mail, you'll need to locate an SMTP server that you can use.
    Also: Anyway to attach more than 1 file (say photo) at a time using MobileMe and my mail account? For 22 small photos do I have to hit attach each time? I can't seem to select the folder they are in and get all 22 to attach...
    I haven't tried that, but I would expect to have to attach them one at a time.

  • Cannot receive/send emails via Mail on Mac using 10.6.8, keeps asking for password, very frustrating. Any ideas please? Regards

    Cannot receive/send emails via Mail on Mac using 10.6.8, keeps asking for password, very frustrating. Any ideas please? Regards

    One more time, iCloud mail accounts are .me, .mac and .icloud. New ones are only .icloud.
    iCloud mail is a standard Imap account that can be used with any mail client in existence. But You are talking about the ability to automatically setup an iCloud account in mail, which did not exist until 10.7.2.
    You can use password or token authentification with iCloud mail (in Mail) it is your choice.
    Set the account manually, set it as Imap, use imap.mail.me.com (no P number) for the incoming email and smtp.mail.me.com as the outgoing server.
    The full settings (ports and security) are here. Use them and it will work, regardless of domain (mac, me and icloud addresses all use the same settings.
    IMAP (Incoming Mail Server) information:
    Server name: imap.mail.me.com
    SSL Required: Yes
    Port: 993
    Username: [email protected] (use your @me.com address from your iCloud account)
    Password: Your iCloud password
    SMTP (outgoing mail server) information:
    Server name: smtp.mail.me.com
    SSL Required: Yes
    Port: 587
    SMTP Authentication Required: Yes
    Username: [email protected] (use your @me.com address from your iCloud account)
    Password: Your iCloud password
    Note: If you receive errors using SSL, try using TLS instead. SSL is required for both IMAP and SMTP connection with iCloud. POP is not supported by iCloud. 
    For more information on how to use this information with your email application, consult your application's documentation.

Maybe you are looking for