Error - Problem sending invitation email

Hi
I am trying to invite a admin user, but i never get an email from BC
This i the error when im resend invitation email :
Error - Problem sending invitation email
Thanks
Finn

I am having a similar issue - the email appears to have been created but the activation email was never sent... now we can not remove the busted one or create a log in in a client! - how to repair?

Similar Messages

  • Failed to send invitation emails to recipients. detailed error: an error occurred while sending mail.

    I tried to send a distributed form out to myself to check the system and received this error message: failed to send invitation emails to recipients. detailed error: an error occurred while sending mail. Any idea what I may have done wrong? I am using Microsoft Outlook 2010 with Windows 8.1 OS.

    I think century link did change some settings though.
    Help menu (Alt+H) > troubleshooting information. Copy to clipboard and paste into a reply here. Then I can see what setting your using with century link and compare them to what century link provide.

  • I have problem sending a email ..spool not created using custom FM

    Hi experts,
    i have problem sending a email ..spool not created using custom FM...this the custom FM
    * Send email notification
          lv_subject = text-037.
          lv_attachment = text-038.
          CALL FUNCTION 'Z_SEND_EMAIL_FROM_SPOOL'
            EXPORTING
              email1            = lv_email1
              email2            = lv_email2
              email3            = lv_email3
              subject           = lv_subject
              attachment_name   = lv_attachment
            EXCEPTIONS
              spool_not_created = 1
              OTHERS            = 2.
    Source code
    this is the source code for this FM
    IF sy-batch EQ 'X'.
        PERFORM get_job_details.
        PERFORM obtain_spool_id.
        PERFORM convert_spool_to_pdf.
        IF sy-subrc IS NOT INITIAL.
          MESSAGE e040(zhrcd) RAISING spool_not_created.
        ENDIF.
        PERFORM process_email USING email1
                                    email2
                                    email3
                                    subject
                                    attachment_name.
        WAIT UP TO 5 SECONDS.
        SUBMIT rsconn01 WITH mode   = 'INT'
                        WITH output = 'X'
                        AND RETURN.
      ENDIF.....
    Please let me know
    Edited by: Thomas Zloch on Nov 16, 2010 5:53 PM - please use code tags

    Hi srinivas ,
    Could you please Check
    FORM summary_report .
      DATA: lv_success TYPE i,
              lv_error TYPE i,
              lv_total TYPE i.
      DESCRIBE TABLE gt_data LINES lv_success.
    DESCRIBE TABLE gt_error LINES lv_error.
      DESCRIBE TABLE gt_message LINES lv_error.
    lv_total = lv_success + lv_error.
      lv_total = lv_success.
      gwa_summary-record = text-008."Number of Successful records.
      gwa_summary-number = lv_success.
      APPEND gwa_summary TO gt_summary.
      gwa_summary-record = text-009."Number of error records'.
      gwa_summary-number = lv_error.
      APPEND gwa_summary TO gt_summary.
      gwa_summary-record = text-010."Total number of records processed.
      gwa_summary-number =  lv_total.
      APPEND gwa_summary TO gt_summary.
    CLEAR gt_fieldcat.
      gwa_fieldcat_summ-col_pos = 1 .
      gwa_fieldcat_summ-fieldname  = 'RECORD'.
      gwa_fieldcat_summ-tabname = 'GT_SUMMARY'.
      gwa_fieldcat_summ-seltext_l  = text-011."Records
      gwa_fieldcat_summ-outputlen = '70'.
      APPEND gwa_fieldcat_summ TO gt_fieldcat_summ.
      gwa_fieldcat_summ-col_pos = 2 .
      gwa_fieldcat_summ-fieldname  = 'NUMBER'.
      gwa_fieldcat_summ-tabname = 'GT_SUMMARY'.
      gwa_fieldcat_summ-seltext_l  = text-012."Number
      gwa_fieldcat_summ-outputlen = '10'.
      APPEND gwa_fieldcat_summ TO gt_fieldcat_summ.
    ENDFORM.                    " SUMMARY_REPORT
    *&      Form  ERROR_REPORT
    FORM error_report .
    gt_fieldcat_err[] = gt_fieldcat[].
      gv_fieldcat_err-col_pos = 1.
      gv_fieldcat_err-fieldname  = 'PERNR'.
      gv_fieldcat_err-tabname = 'GT_MESSAGE'.
      gv_fieldcat_err-seltext_l  = text-070."Employee Number
      gv_fieldcat_err-outputlen = '20'.
      APPEND gv_fieldcat_err TO gt_fieldcat_err.
      gv_fieldcat_err-col_pos = 2.
      gv_fieldcat_err-fieldname  = 'MESSAGE'.
      gv_fieldcat_err-tabname = 'GT_MESSAGE'.
      gv_fieldcat_err-seltext_l  = text-071."Error Message
      gv_fieldcat_err-outputlen = '80'.
      APPEND gv_fieldcat_err TO gt_fieldcat_err.
    ENDFORM.                    " ERROR_REPORT
    *&      Form  FINAL_REPORT
    FORM final_report .
      DATA:lv_layout TYPE slis_layout_alv,
             lt_events_summ TYPE slis_t_event,
             lv_events_summ LIKE LINE OF lt_events_summ,
             lt_events_det TYPE slis_t_event,
             lv_events_det LIKE LINE OF lt_events_det,
             lt_events_err TYPE slis_t_event,
             lv_events_err LIKE LINE OF lt_events_det,
             lt_events_msg TYPE slis_t_event,
             lv_events_msg LIKE LINE OF lt_events_det.
      lv_events_summ-name = 'TOP_OF_PAGE'.
      lv_events_summ-form = 'TOP_OF_PAGE1'.
      APPEND lv_events_summ TO lt_events_summ.
      lv_events_det-name = 'TOP_OF_PAGE'.
      lv_events_det-form = 'TOP_OF_PAGE2'.
      APPEND lv_events_det TO lt_events_det.
      lv_events_err-name = 'TOP_OF_PAGE'.
      lv_events_err-form = 'TOP_OF_PAGE3'.
      APPEND lv_events_err TO lt_events_err.
      lv_events_msg-name = 'TOP_OF_PAGE'.
      lv_events_msg-form = 'TOP_OF_PAGE4'.
      APPEND lv_events_msg TO lt_events_msg.
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_INIT'
        EXPORTING
          i_callback_program = sy-repid.
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
        EXPORTING
          is_layout                        = lv_layout
          it_fieldcat                      = gt_fieldcat_summ
          i_tabname                        = 'IT_SUMMARY'
          it_events                        = lt_events_summ
      IT_SORT                          =
      I_TEXT                           = ' '
        TABLES
          t_outtab                         = gt_summary
    EXCEPTIONS
      PROGRAM_ERROR                    = 1
      MAXIMUM_OF_APPENDS_REACHED       = 2
      OTHERS                           = 3
    IF CHK_DTL IS NOT INITIAL.
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
        EXPORTING
          is_layout                        = lv_layout
          it_fieldcat                      = gt_fieldcat
          i_tabname                        = 'gt_data'
          it_events                        = lt_events_det
      IT_SORT                          =
      I_TEXT                           = ' '
        TABLES
          t_outtab                         = gt_data
    EXCEPTIONS
      PROGRAM_ERROR                    = 1
      MAXIMUM_OF_APPENDS_REACHED       = 2
      OTHERS                           = 3
    ENDIF.
    CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
       EXPORTING
         is_layout   = lv_layout
         it_fieldcat = gt_fieldcat_err
         i_tabname   = 'gt_error'
         it_events   = lt_events_err
       TABLES
         t_outtab    = gt_error.
    CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
       EXPORTING
         is_layout   = lv_layout
         it_fieldcat = gt_fieldcat_msg
         i_tabname   = 'gt_message'
         it_events   = lt_events_msg
       TABLES
         t_outtab    = gt_error.
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
        EXPORTING
          is_layout   = lv_layout
          it_fieldcat = gt_fieldcat_err
          i_tabname   = 'gt_message'
          it_events   = lt_events_err
        TABLES
          t_outtab    = gt_message.
    IF GT_MESSAGE[] IS NOT INITIAL.
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
        EXPORTING
          is_layout   = lv_layout
          it_fieldcat = gt_fieldcat_msg
          i_tabname   = 'gt_message'
          it_events   = lt_events_msg
        TABLES
          t_outtab    = gt_message.
    ENDIF.
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_DISPLAY'
    EXPORTING
       i_interface_check             = ' '
      IS_PRINT                      =
       i_screen_start_column         = 0
       i_screen_start_line           = 0
       i_screen_end_column           = 0
       i_screen_end_line             = 0
    IMPORTING
      E_EXIT_CAUSED_BY_CALLER       =
      ES_EXIT_CAUSED_BY_USER        =
    EXCEPTIONS
      PROGRAM_ERROR                 = 1
      OTHERS                        = 2
    ENDFORM.                    " FINAL_REPORT
    *&      Form  top_of_page
          text
    FORM top_of_page1.                                          "#EC CALLED
      WRITE text-013."SUMMARY REPORT.
    ENDFORM.                    "top_of_page
    *&      Form  top_of_page2
          text
    FORM top_of_page2.                                          "#EC CALLED
      WRITE text-014."DETAIL REPORT.
    ENDFORM.                    "top_of_page
    *&      Form  top_of_page3
          text
    FORM top_of_page3.                                          "#EC CALLED
      WRITE text-015."ERROR REPORT
    ENDFORM.                    "top_of_page
    *&      Form  EMAIL_NOTIFICATION
    FORM email_notification .
      DATA: lv_email1  TYPE somlreci1-receiver,
           lv_email2  TYPE somlreci1-receiver,
           lv_email3  TYPE somlreci1-receiver,
           lv_subject TYPE char200,
           c_flag     TYPE c           VALUE 'X',
           lv_attachment TYPE char50.
      CLEAR: lv_email1,
             lv_email2,
             lv_email3,
             lv_subject,
             lv_attachment.
      SELECT SINGLE email1
                    email2
                    email3
        FROM zhr_interface_pr
        INTO (lv_email1,lv_email2,lv_email3)
        WHERE zinterfaceid EQ gc_objectid.
      IF sy-subrc EQ 0.
        IF sy-batch EQ 'X'.
    Send email notification
          lv_subject = text-037.
          lv_attachment = text-038.
          CALL FUNCTION 'Z_SEND_EMAIL_FROM_SPOOL'
            EXPORTING
              email1            = lv_email1
              email2            = lv_email2
              email3            = lv_email3
              subject           = lv_subject
              attachment_name   = lv_attachment
            EXCEPTIONS
              spool_not_created = 1
              OTHERS            = 2.
          IF sy-subrc <> 0.
          ENDIF.
        ENDIF.
      ENDIF.
    ENDFORM.                    "
    Edited by: katewinslate@SAP on Nov 17, 2010 12:50 PM

  • I have an Ipad 2 and are having problems sending out emails in one of my email address. I always get a message reading the email was not sent because the server does not allow relaying. This is an email account POP3. I have no such problem with gmail.

    I have an Ipad 2 and are having problems sending out emails in one of my email address. This is a POP3 email Account? I always get a message reading that the email was not sent because the server does not allow relaying. I have no such problem with gmail. What could be the problem and how do I resolve this. Is it about settings?
    Richard.

    Welcome to the Apple community.
    If you are unable to remember your password, security questions, don’t have access to your rescue address or are unable to reset your password for whatever reason, your only option is to contact Apple ID Support, upon speaking to an operator you should explain that your problem is related to your Apple ID, this way you will not be charged for assistance, even if you don’t have an AppleCare plan.
    The operator will take you through some steps you may have already tried, however they need to be sure they have exhausted all usual approaches before trying to reset your account, so you should try to be helpful and show patience with the procedure.
    The operator will need to verify they are speaking to the account holder and may ask you some questions that only the account holder could know, and you will need to answer them if the process is to proceed.
    Once the operator has verified your identity they will send a message through to your device which contains an alpha numeric code, which you will need to read back to them.
    Once this has been completed they will send an email to your iCloud email address after a period of 24 hours, so you should check that mail is enabled in your devices iCloud settings.
    Upon receipt of the email, use the reset link provided to reset your password, after which you should be able to make the adjustments to iCloud that you wish to do.

  • Error while sending the email notifcation

    Hi All
    I am getting this error while sending the email notifcation.If any one of you have any idea regarding this please suggest
    [2012-09-12T03:55:41.288-10:00] [soa_server1] [ERROR] [SDP-26102] [oracle.sdp.messaging.driver.email] [tid: [ACTIVE].ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: OracleSystemUser] [ecid: f5c1f5acbf0bb7a6:22e05768:139ba096e4d:-8000-00000000000006ef,0] [APP: usermessagingdriver-email] Error while writing e-mail message content.[[
    java.lang.ArrayIndexOutOfBoundsException: 0 >= 0
         at java.util.Vector.elementAt(Vector.java:427)
         at javax.mail.Multipart.getBodyPart(Multipart.java:157)
         at javax.mail.internet.MimeMultipart.getBodyPart(MimeMultipart.java:256)
         at oracle.sdpinternal.messaging.driver.email.EmailDriver.getHeaderEncoding(EmailDriver.java:1079)
         at oracle.sdpinternal.messaging.driver.email.EmailDriver.send(EmailDriver.java:670)
         at oracle.sdpinternal.messaging.driver.email.EmailManagedConnection.send(EmailManagedConnection.java:50)
         at oracle.sdpinternal.messaging.driver.DriverConnectionImpl.send(DriverConnectionImpl.java:41)
         at oracle.sdpinternal.messaging.dispatcher.DriverDispatcherBean.onMessage(DriverDispatcherBean.java:296)
         at sun.reflect.GeneratedMethodAccessor2553.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.bea.core.repackaged.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:310)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
         at com.bea.core.repackaged.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:89)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
         at $Proxy346.onMessage(Unknown Source)
         at weblogic.ejb.container.internal.MDListener.execute(MDListener.java:574)
         at weblogic.ejb.container.internal.MDListener.transactionalOnMessage(MDListener.java:477)
         at weblogic.ejb.container.internal.MDListener.onMessage(MDListener.java:379)
         at weblogic.jms.client.JMSSession.onMessage(JMSSession.java:4659)
         at weblogic.jms.client.JMSSession.execute(JMSSession.java:4345)
         at weblogic.jms.client.JMSSession.executeMessage(JMSSession.java:3821)
         at weblogic.jms.client.JMSSession.access$000(JMSSession.java:115)
         at weblogic.jms.client.JMSSession$UseForRunnable.run(JMSSession.java:5170)
         at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:528)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    [2012-09-12T03:55:41.331-10:00] [soa_server1] [WARNING] [SDP-25107] [oracle.sdp.messaging.engine.store] [tid: [ACTIVE].ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: OracleSystemUser] [ecid: f5c1f5acbf0bb7a6:22e05768:139ba096e4d:-8000-00000000000006ef,0] [APP: usermessagingserver] Message ID bac38bd50a1f32a129c5c739335a7855 in Status object does not match previously recorded Message ID b7e259a30a1f32a12c981a3ffd343f6d.
    [2012-09-12T03:55:41.362-10:00] [soa_server1] [ERROR] [] [oracle.soa.services.notification] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@3066bad4] [userId: <anonymous>] [ecid: 0000Jau4qHj9Lex_w9w0yW1GK6Rn000003,1:32530] [APP: soa-infra] <.> Error status received from UMS.[[
    Status detail :
         Status type : DELIVERY_TO_GATEWAY:FAILURE,
         Status Content : Failed to set message headers: java.lang.ArrayIndexOutOfBoundsException: 0 >= 0,
         Addressed to : EMAIL:[email protected],
         UMS Driver : Farm_base_domain/base_domain/soa_server1/usermessagingdriver-email:oracle_sdpmessagingdriver_email#Email-Driver,
         UMS Message Id : b7e259a30a1f32a12c981a3ffd343f6d,
         Gateway message Id : ,
         Status Received at : Wed Sep 12 03:55:41 HST 2012.
    Check status details and fix the underlying reason, which caused error.
    [2012-09-12T03:55:51.492-10:00] [soa_server1] [WARNING] [] [oracle.soa.services.notification] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@3066bad4] [userId: <anonymous>] [ecid: 0000Jau4qHj9Lex_w9w0yW1GK6Rn000003,1:32530] [APP: soa-infra] <.> Could not find notification record corresponding to failed notification : (Channel message id) : b7e259a30a1f32a12c981a3ffd343f6d[[
    Hence it will not be retried.
    Possible cause could be purging of notification data after sending out notification, but before receiving status.
    ]]

    Are you using your email address to send the email notifications if it Is not configured with AD? Have you populated the mail attribute in weblogic console-->realms-->my realms-->users
    In addition are you sure you have configured the 'Email Driver Properties' correctly in EM ?? have you specified the Notification Mode to Email ?
    Please make sure that the outgoing mail server and port along with the username and password are correct.
    Also validate the workflow settings in your EM?
    In addition, please validate that when you logon to BPM worklist using the admin account and click on the name for e.g. weblogic, you see the email attribute populated properly.
    Thanks
    ACM

  • Problem sending out emails offsite. iPad

    Hi fellow apple users, 
    Could anyone assist?
    I have no problem sending out email when using it at office.
    But when I go offsite to send out email, i was prompted 'Cannot Send Mail'. A copy has been placed in your outbox. The recipient was rejected by server because it does not allow relaying.
    Any good souls out there who can assist?
    Thanks a bunch!

    Hi al,
    Here is a link to a site that explains the whole "relaying" thing. Because there are various reasons you may be getting this message, thought this might be helpful:
    http://www.gammadyne.com/relaying_denied.htm
    Hope this sheds some light on your issue!
    GB

  • Problem sending out email on iPhone 3GS

    Hi,
    I'm having problem sending email on my iPhone 3GS today only. Error "Cannot send Mail: an error occurred while delivering this message." WiFi is off; Turn on all the SMTP to Yahoo and Gmail; I have powered it off and on again, still my email are not sending out.
    Help...~

    Ya - I am have the same problem. I have 4 accounts that are set-up on my phone. 3 Gmail - I can receive but not send out replies - all settings are matched up with gmail sever information. I have 1 Yahoo account which I can send and receive from no problem. Why??

  • Problem sending pop email

    I have a problem sending (not receiving) pop email.
    I am connected directly to my ISP (virgin.net, part of virginmedia.com) on adsl – (ie not trying to connect via another isp) - sharing the internet connection wirelessly via a modem/router to 2 Macs (macbooks), a Vista laptop and wiredly to an XP desktop.
    The problem only happens with the Macs, not the Windows machines. One of the Macs is running Tiger with mail 2.1.3, the other Leopard with mail 3.2. Both are affected.
    The problem only arises when trying to send longer messages (a few paragraphs - not MB). There is no problem sending short (one or two word) messages. I'm not sure where the cutoff comes.
    What happens is that the messages are simply timed out, after a lengthy attempt to send. The error message is generally
    ‘The server response was: 4.4.2 omf09.hostedemail.com Error: timeout exceeded ‘
    but sometimes (more recently, perhaps as a result of all the fiddling I describe below)
    ‘An error occurred while delivering this message via the SMTP server "(null)" ‘
    This started on Friday 30th May. That day we woke up to find we were unable to receive email either. Looking at the mail accounts, I saw that the (incoming) authentication had spontaneously(?) changed from "password" to MD5 challenge response. Since returning it to password, we've been able to receive mail on both machines.
    We only noticed the problem with sending a few days later as we hadn’t tried to send any longer messages; so it’s not absolutely certain that it’s related – but it seems likely.
    We can send pop email from our googlemail accounts. We can also use virgin’s webmail with no problems.
    This is what I’ve tried to resolve the problem:
    checked that the server etc settings are configured according to Virgin’s instructions at
    http://www.virginmedia.com/help/email/set-up-pop-email.php#OS_X103
    (on the advice of support there) deleted one of the affected accounts (and also removed the smtp server from the server list) and recreated it. No effect.
    Installed Thunderbird and set up the same account. Same problem there.
    Used Connection Doctor – shows connections to all servers as green
    Rebooted the modem/ router, and both machines
    Repaired permissions
    Nothing seems to help.
    I’ve done all this on the Tiger mac, on the theory that once I find the solution there is will also apply to the Leopard one ie that it’s not a glitch of some recent Leopard update.
    Because the Windows machines (and webmail) work fine, Virgin clearly think that this is simply a Mac problem. I suspect that they have changed something in their setup, as it seems unlikely that it would otherwise affect two Macs running different versions of OSX in the same way.
    I’ve only recently persuaded my wife to switch to a Macbook after her experience of Vista so this is not only annoying but embarrassing!
    David

    I have a Mac and have had the same problem with Virgin – I have been unable to send emails of more than about 300 words, or any replies or attachments, since May 30, the day Virgin “improved” their email services. Receiving emails and using webmail are not affected. Virgin’s helpline has been totally unhelpful, refusing to accept that it has anything to do with them or that some other Mac users are affected in the same way. Their fault team insists it’s a problem with my computer. I have O.S. 10.5.3 Leopard, having just upgraded, but the problem occurred when I was still on O.S. 10.4. Tiger. My email program is Entourage (which Virgin’s helpline hasn’t even heard of!). When the problem first occurred, I wasn’t able to send any emails, but by changing the Accounts advanced settings to what Virgin recommended when I phoned them, I could at least send short emails. (Their announcement of the email changes said, “Don’t worry, you don’t have to do anything.”) Virgin are trying to put a huge spin on this shabby treatment of Mac customers by saying, “We’re doing lots of things to make your experience with us even better” – but with friends like this, who needs enemies?

  • PSE 8 No Email Program Error When Sending an Email

    Hi Everyone,
    I have a student who has a pretty new computer running Win 7 with PSE 8. She has set up her email sharing with Adobe Services and has received/entered the verification code. However, when trying to send an email, she gets the following error message as soon as she hits Send.
    "There is no e-mail program associated to perform the requested action.  Please install an email program or, if one is already installed, create an association in the Default Programs control panel."
    Running PSE 8 as an administrator does not correct the problem. I thought that when you are using Adobe Email Service, you did not need an email program, like OL or Microsoft Mail. ??
    TIA Don S.

    No, I never did get an answer.
    To be honest I cannot remember if my student resolved their problem. I have never had that specific error message, and the last time I checked PSE 8 was emailing fine. HOWEVER, just yesterday, the only way I could send email from within PSE 7 was to not include any names from the PSE Contact list. This always caused PSE 7 to crash for both OL and Adobe Email Service, Photo Mail or Attachments. I have not checked PSE 8 yet.
    I found out about the PSE 7 problem from a friend using OL. For her, it was working but all of a sudden, began to crash PSE 7.
    Does anyone know if PSE 7/8 connects with Adobe while emailing, even if OL is used as the email client?
    Don S.

  • I have problem send any email from iPad2

    I have a very weird situation.
    I had this iPad2 for  a few months and was able to receive and send email using 3 email accounts, from gmail, yahoo and hotmail without any problem.
    Howeverm after I came back from a trip, I could only receive email, but cannot send any email from any of these accounts at all!
    I am using WIFI. I have deleted all email accounts, turned off the ipad2, and started over a couple of times.
    I tried to recreate these account again one by one. After added one account, I tested it only to see no email can be sent!
    THere is no error message, no any information. All I know is the email I sent from my iPad disappeared!
    Any one here can help?
    Thanks!

    Disabling email scanning didn't fix it. I can open the Mozilla email client and it immediately tries to connect to the inbound AT&T mail server but then just sits there with no response. If I try to send a message same thing, tries to connect to outbound AT&T server but nothing. One of the options in the support doc said to remove the saved passwords and when the client restarts it will ask you to save your password again. The client never makes a connection to the server so it never has a chance to authenticate. Its almost like AT&T disabled their POP server.

  • Getting errors when sending an Email with DI

    Hi there,
    I'm trying to send an email using DI and getting this error if I use smtp_to:
    'Cannot find the full path for file <C:/Program Files/Business Objects/BusinessObjects Data Services/bin/smtp>, due to error'
    and if I use mail_to:
    'There was no default login, and the user failed to log in successfully when the login dialog box was displayed. No message was'
    Can someone help and tell me what am i doing wrong, or am I missing configurations.
    Your help is very much appreciated.
    Gsecure
    Edited by: gsecure on Mar 18, 2010 10:53 AM
    Edited by: gsecure on Mar 18, 2010 10:53 AM

    Hi everyone,
    I installed DI 3.2 which solved the problem, I think my 3.1 was not installed correctly.
    thank you.
    Edited by: gsecure on Apr 16, 2010 8:54 AM

  • Getting errors when sending/receiving email

    Hi there I have only just updated to Windows 10 from 8.1 nd am able to receive mails On outlook 2013 but continually get the following error message 
    Task '[email protected] - Sending' reported error (0x800CCC13) : 'Cannot connect to the network. Verify your network connection or modem.' I have tried everything but cant get it fixed can someone help Thanks Bryan

    Same thing here Fresh install of windows 10 and Outlook 2013 Receiving emails but getting the same error message when sending and emails stuck in Outbox. Tried all available options in account settings but it doesnt make any difference. Strangley enough though when initially setting up the mail account it sends its test email no problems. Installed Outlook 2010 to see if there was any difference but the same thing happens.

  • Error while sending PO email as PO is in smartform

    As my PO is in smartform so when I am sendin the email of PO using SAP standard Program  'SAPFM06P', FORM routine ENTRY_NEU'  the processing routines,system is giving the error to open PO form.
    So is there any way to send the email of smartform.
    Thanks in advance

    Hi
    I think some basis related configuartions to be done
    Try like this and inform me
    A cyclic job runs, which processes the messages seen in the SOST queue.
    Are you sure it's not the frequency of the cyclic job, rather than the
    number of messages in the queue, that you are observing? In messages
    that are queued and before the cyclic job runs, "wait for comm. service"
    is the normal status.
    If you mean that there are always 4 items queued in SOST regardless of
    the cyclic send job, then I have no ideas. I would have thought there
    was no way to do that.
    when the send job runs it just never
    picks them up & sends them, while it picks up many others. The send job
    is somehow blind to these; no error message occurs. In this case, I
    'delete' them from the queue (in SOST) and then 'undelete' (drop down
    menu -> /Go to /Deleted Items) them and then re-queue them. THEN they
    actually get picked up & sent when the next cyclic send job executes.
    Regards
    Pavan

  • Problems sending AOL emails (in UK)

    I have had my Iphone for about 6 months now with no major problems but for the past few weeks I have been unable to send emails from my AOL email address. I also have a Googlemail address and this wirks fine, any suggeestions??
    When trying to send an email it states
    "the connection to the outgoing server "stmp.aol.com" failed"
    this displays twice (ie you ok the 1st one and it appears again)
    I ahve checked the settings and nothing has changed from when it used to work, the details
    Settings/Mail/AOL/outgoing mail server is "stmp.aol.com" with other STMP servers marked on.
    Any ideas, as I have deleted the account several times and re-installed but to no avail, any suggestions??

    Hey Guys,
    Thanks for the replies.  This is running on OSX client, not server and no authentication is required.
    I did figure out a way to make it work late yesterday.  I'm not sure if this is the "right way" or not, but it seems to do the trick.
    In the automations tab in the system prefs panel of FCS, I went to "Assets Ready for Review [email]" and clicked through to the Responses screen.  Here the "From" field was left blank.  I put in a dummy email, and it worked just as advertised!
    Michael, is this where you said to leave it blank and let FCS fill in the address?  If so, where does it pull the address from?  Can I have it pull from a metadata field and put the person that was working on the projects email in there, so the reviewer can respond to that real email instead of the dummy one that I used?
    Just a thought....
    Thanks again.
    John

  • New user of Macbook Pro - Problems sending out emails

    Hi, I have just recently bought a macbook pro. I have created my email account. However, when I try to send an email, the message is just stuck in the outbox. What do I do to overcome this problem please?

    Hi Ernie,
    I found the below information when going to "what are bt yahoo settings". Is this information useful at all?
    What are the BT Yahoo! Mail settings?
    To use an email program to send and receive BT Yahoo! Mail messages, you must designate a new incoming (POP) mail server and a new outgoing (SMTP) mail server. Outlook Express users can do this automatically by going to My account and clicking on 'Configure my email client settings'.
    If your program won't let you add new POP or SMTP servers, you'll need to change your current server settings.
    Here are the basic server settings for BT Yahoo! Mail:
    Incoming Mail (POP3) Server:
    mail.btinternet.com
    Port (usually specified in 'Advanced settings')
    110
    Outgoing Mail (SMTP) Server:
    mail.btinternet.com
    Port (usually specified in 'Advanced Settings')
    25
    Account Name/Login Name:
    Your email address (including the "@btinternet.com" or "@btopenworld.com" part)
    Password:
    Your BT Yahoo! password
    Please note: if your client does not support SMTP authentication, you will not be able to use it to send your BT Yahoo! Mail messages.

Maybe you are looking for