Recive/Send Emails VIA SAP

Hi
I am just wondering is there any way we can receive email via SAP B1. I know I can send email using the outlook add-on. Is there any add-on or program that can be used to receive emails directly to SAP B1? Basically I just want to replace outlook.
Thank you very much for your help
Sanjaya

Dear,
You can user SBO Mailer function in the SAP Service Manager
For installing it, Go to the Server Tool folder > Double Click "Setup.exe" > Select
"Modify" option > Select (Check) the SBO Mailer component > and finish
the installation..
I attached a note 1145354 for your information as below :
Symptom
The following troubleshooting information may be required in configuring
the Mail Services, in addition to the information covered in the
Administration Guide:
1.  Ensure that You have already setup an e-mail account for SAP
    Business One users on your mail server. To verify the connection
    with the mail server, choose Test Connection.
2.  The mail service checks the connection with the specified mail
    server and e-mail account and displays an appropriate message.
If the SMTP server requires some authentication, for example if the SMTP
server is configured to accept only login authenticated mails, but you
selected No Authentication, the test connection will be successful.
However, no e-mails are sent.
To check whether the connection to the SMTP server works, send a test
e-mail.
If the connection fails, make sure:
    o  You have entered the correct name of your mail server.
     o  You have entered the correct user name and password.
After changing any of the settings, restart the SBO Mailer.
Other terms
SBO Mailer, SMTP server, test e-mail, configuring Mail Services,
Reason and Prerequisites
FAQ
Solution
The SAP Business One mail service supports mail server authentication
using user name and password. This note describes troubleshooting
information in addition to the information provided in the  Administration Guide.
Wish the information above is useful for you.
Regards
Apple

Similar Messages

  • Recruitment : Send email Via SAp System

    Hi,
    I am facing a big problem when I send email to application to cofirm that their application was received. I use Tcode PBAT to send email to application. In result screen, there is list of applicants that I sent email to . But all records noticed that "No fax or internet adress" .  I have already inputed internet adresses in IT0105
    I don't khow why System can't read data in IT0105 (Comunication).
    Please help me to undersatnd more about the Recruitment Module.
    Thanks so much
    Best Regards,
    Edited by: Sushi_intel on Dec 9, 2009 10:09 AM

    Hi all,
    Sorry for my delay. I went to SCOT and SOST to configure but the error still appear. I can send email to other internal address. But internet address is not. I don't kow why system can not read data in infotype Communication. Is there something wrong? I went to Mail Connection and configured as follow:
    *001  Mail confirmation of Receipt
    IDTXT RECEIPT
    RECV1
    RECV2 X
    RECV3 X
    SUBTY 0001
    OUTBX X*
    Please tell What I can do to send email to applicants automatically .
    Thanks so much.
    Edited by: Sushi_intel on Dec 15, 2009 9:21 AM

  • Changing sender on sent email via SAP

    I need to change the sender on sent email via sap; i mean, no sy-uname, something like [email protected]
    Regards

    Check the sample code
    *& Report  ZASD
    REPORT  ZASD.
    This example shows how to send
      - a simple text provided in an internal table of text lines
      - and an attached MS word document provided in internal table
      - to some internet email address.
    All activities done via facade CL_BCS!
    DATA: send_request       TYPE REF TO cl_bcs.
    DATA: text               TYPE bcsy_text.
    data: binary_content     type solix_tab.
    DATA: document           TYPE REF TO cl_document_bcs.
    DATA: sender             TYPE REF TO cl_sapuser_bcs.
    DATA: recipient          TYPE REF TO if_recipient_bcs.
    DATA: bcs_exception      type ref to cx_bcs.
    data: sent_to_all        type os_boolean.
    START-OF-SELECTION.
    CALL FUNCTION 'GUI_UPLOAD'
      EXPORTING
        filename                      = 'c:\wagonTrain.gif'
       FILETYPE                      = 'BIN'
      HAS_FIELD_SEPARATOR           = ' '
      HEADER_LENGTH                 = 0
      READ_BY_LINE                  = 'X'
      DAT_MODE                      = ' '
      CODEPAGE                      = ' '
      IGNORE_CERR                   = ABAP_TRUE
      REPLACEMENT                   = '#'
      CHECK_BOM                     = ' '
      VIRUS_SCAN_PROFILE            = VIRUS_SCAN_PROFILE
    IMPORTING
      FILELENGTH                    = FILELENGTH
      HEADER                        = HEADER
      TABLES
        data_tab                      = binary_content
    EXCEPTIONS
       FILE_OPEN_ERROR               = 1
       FILE_READ_ERROR               = 2
       NO_BATCH                      = 3
       GUI_REFUSE_FILETRANSFER       = 4
       INVALID_TYPE                  = 5
       NO_AUTHORITY                  = 6
       UNKNOWN_ERROR                 = 7
       BAD_DATA_FORMAT               = 8
       HEADER_NOT_ALLOWED            = 9
       SEPARATOR_NOT_ALLOWED         = 10
       HEADER_TOO_LONG               = 11
       UNKNOWN_DP_ERROR              = 12
       ACCESS_DENIED                 = 13
       DP_OUT_OF_MEMORY              = 14
       DISK_FULL                     = 15
       DP_TIMEOUT                    = 16
       OTHERS                        = 17
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
        PERFORM main.
          FORM main                                                     *
    FORM main.
      try.
        -------- create persistent send request ------------------------
          send_request = cl_bcs=>create_persistent( ).
        -------- create and set document with attachment ---------------
        create document from internal table with text
          APPEND 'Hello world!' TO text.
          document = cl_document_bcs=>create_document(
                          i_type    = 'RAW'
                          i_text    = text
                          i_length  = '12'
                          i_subject = 'test created by BCS_EXAMPLE_2' ).
        add attachment to document
        BCS expects document content here e.g. from document upload
        binary_content = ...
          CALL METHOD document->add_attachment
            EXPORTING  i_attachment_type = 'GIF'
                       i_attachment_subject = 'My attachment'
                       i_att_content_hex    = binary_content.
        add document to send request
          CALL METHOD send_request->set_document( document ).
    <b>*     -
    set sender -
        note: this is necessary only if you want to set the sender
              different from actual user (SY-UNAME). Otherwise sender is
              set automatically with actual user.
          sender = cl_sapuser_bcs=>create( sy-uname ).
          CALL METHOD send_request->set_sender
            EXPORTING i_sender = sender.</b>
        --------- add recipient (e-mail address) -----------------------
        create recipient - please replace e-mail address !!!
          recipient = cl_cam_address_bcs=>create_internet_address(
                                        'YOUR [email protected]' ).
        add recipient with its respective attributes to send request
          CALL METHOD send_request->add_recipient
            EXPORTING
              i_recipient  = recipient
              i_express    = 'X'.
    CALL METHOD send_request->set_send_immediately( 'X' ).
        ---------- send document ---------------------------------------
          CALL METHOD send_request->send(
            exporting
              i_with_error_screen = 'X'
            receiving
              result              = sent_to_all ).
          if sent_to_all = 'X'.
            write text-003.
          endif.
          COMMIT WORK.
    *                     exception handling
    * replace this very rudimentary exception handling
    * with your own one !!!
      catch cx_bcs into bcs_exception.
        write: 'Fehler aufgetreten.'(001).
        write: 'Fehlertyp:'(002), bcs_exception->error_type.
        exit.
      endtry.
    ENDFORM.
    *Check the BOL Part
    Message was edited by: Amandeep  Singh

  • Cannot Send Email from SAP Business One

    Hi Experts
    I have configured SAP Email Services from the Mailer Service and Customer can send emails all the while,
    Now I have an Issue for One User,
    Iam using the Same Machine, Same Database with Manager Login, I can send Email from SAP with Attachments
    But When I use another Super user the system is not delivering the Email and it Goes to the Sent box (but not delivered)
    Have anyone encountered the Issue before
    Please hep to solve this issue permanently
    Thanks and Regards
    Vinodh Kumar Mohan

    Hi Vinodh Kumar Mohan,
    If the email can be found in Sent box, it must be delivered already.
    The problem could be on the email recipient side. It may go to the junk mail.
    Thanks,
    Gordon

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

  • Send email from SAP using SMTP-AUTH

    Dear all,
    I would like to send email from SAP to external SMTP server using authenticated method.
    Can I set up this scenario with SAPConnect?
    Or are there any other methods to set up this scenario?
    Thanks, Regards,
    Fendhy

    Hi,
    You dont need anu authentication to be set :
    Just follow below steps :
    Simple steps to do the SMTP configuration :
    1. Use transaction SCOT
    3. Double Click on SMTP
    4. You will get a window and fill in description
    5. Tick the "Node in use" box
    6. Enter the hostname of the email exchange server
    7. Mail port will be 25
    8. Click on the button next to Internet called "Set"
    9. You will get another window, in the "address area" box, enter *
    10. Click the green check button to exit the second window
    11. Click the green check button to exit the main window
    12. From top menu: Settings -> Default Domain
    13. in the small box that appears enter the domain name which is the last part after the @ sign. The domain name would be company.com
    14. You need to define a job to process the email, from top menu: View -> Jobs
    15. From top menu: Job -> Create
    16. Enter a name
    17. Click on "INT" in the list then "Schedule job" button
    18. Enter start date and time, then click on "Schedule Periodically" button
    19. Enter something like every 10 minutes.
    20. the configuration is now complete. To test it, you need to have an email defined in your user id properties. Use SU01 for that.
    21. Use transaction SO00
    22. Put Title, and text in the body, then enter your email address below, the recepient type would be "internet address"
    23. After a maximum of 10 minutes you should get the email address.
    Regards,
    Nirmal.K

  • 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

  • HT4061 since downloading IS07 I can no longer send emails via hotmail on my Iphone 5

    Since downloading IOS7 to my iphone 5 I can no longer send emails via my hotmail account  - receiving ok though.  How can I fix this?

    Chris
    thanks to your prompting, i found another mail icon that when touched requested a password. i now can send photos once again
    woohoo
    thanks again
    bpb

  • I can no longer receive or send email via my Yahoo account  from my iphone6.  I've downloaded several "help guides" from the internet and tried them, including deleting the Yahoo account and re-adding it via imap.  But nothing seems to work.  Any ideas?

    I can no longer receive or send email via my Yahoo account from my iphone6.  I've downloaded several "help guides" from the internet, deleted and re-added the account via imap settings.  Nothing seems to work.  Any ideas?

    Use the yahoo app if available?

  • Is anyone else having trouble sending email via O2 using Apple Mail (However, I can receive fine)

    Since the upgrade to Mountain Lion (OSX 10.8) I have noit been able to send email via Apple Mail through the O2 network in the UK. O2 say they are aware of this but that it is something that Apple need to address via a patch.

    Following a 45 minute call to O2 yesterday I've just had a further conversation with O2 who advised me to change my 'port setting' to 25. Mail now works fine! Panic over.

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

  • Classes and methods to send email to SAP inbox

    Hi,
    I want an appropriate class and method to send emails to SAP Inbox.
    My objective is that i convert spool to PDF and send it to SAP inbox as an attachment.
    I've used  'CONVERT_ABAPSPOOLJOB_2_PDF' and 'SX_TABLE_LINE_WIDTH_CHANGE' to generate PDF attachment.
    I tried Function modules 'SO_DOCUMENT_SEND_API1'/'SO_NEW_DOCUMENT_ATT_SEND_API1' to send email.
    It was working fine till now (for last 4 months). Now the Basis team has run some patches due to which the PDFs are getting damaged.
    Now the FMs 'SO_DOCUMENT_SEND_API1'/'SO_NEW_DOCUMENT_ATT_SEND_API1' seems to be useless.
    So i tried some methods in classes cl_document_bcs and cl_bcs. These are working fine for Internet mails but not SAP mails.
    Please suggest me some Classes and methods to send the PDF atachments to SAP inbox.

    to have all SAP inbox messages into lotus notes inbox you have to sync the same with the use of connectors rather than resending them
    check out this link
    http://www-128.ibm.com/developerworks/lotus/library/lei-sap/
    for outlook its done using MAPI
    http://www.sapgenie.com/faq/exchange.htm
    Regards
    Raja

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

  • HT201320 I have an Apple Ipad.  I was having problems receiving and sending emails via my yahoo email account.  I deleted the account and then tried to install it but it won't connect to server. Could you let me know what I do please?

    I have an Apple Ipad.  I was having problems receiving and sending emails via my yahoo email account.  I deleted the account and then tried to install it but it won't connect to server. Could you let me know what I do please?

    I think you have to turn off Private Browsing.
    Tap "Private" on Safari Screen to disable Private Browsing. When top of screen is white, Private Browsing is off.
    http://i1224.photobucket.com/albums/ee374/Diavonex/547958b4a8c01ac084dd6649e8386 a0f_zps12fa0cca.jpg

  • 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

  • Remap volume and eject keys on aluminum keyboard?

    Is there a way to remap the volume, mute and eject keys on the Apple (wired) aluminum keyboard? I'd rather have them above the keypad if that's possible - like they were on previous Apple keyboards.

  • Copying DVD-R to Computer to download to IPOD

    I have purchased QuickTime Pro but cannot figure out how to download my DVD movie to the computer to put on my IPOD. The files are .BUP and .VOB. Is it possible to convert these to show on my IPOD?

  • Garbage being displayed

    I am not exactly sure what is going on. We have a program that does some serial communication via RS485. The program works fine pre-build but when it is built I am getting odd characters (wing-ding type). It is on a different PC so maybe it is a driv

  • Update to 10.6.3 broke Quicktime Pro 7.6.6

    After the update Quicktime Pro crashes as fast as it opens, do not understand, help? It does the same on my older iMac and newer Mac Pro. Used the Combo updater, fixed all permissions after the update. My Quicktime pro came with the Final Cut Suite.

  • Itunes has locked my iPod when I am connected. HELP!!!!!!!

    When I am connected to my computer with my nano, it is impossible for me to edit the playlists and songs on my ipod. It recognizes it but I can't edit them. At the bottom of the sceen, where the available space is, there is a lock, and I have NO idea