Send e-mail settings to smartphone via service messages?

Good Day,
Is it possible to send e-mail settings to a blackberry phone via some form of service message so the phone user does not have to manually set it up?
We recently had to reinstall our Exchange server and are now having to change the e-mail settings on all our staff members phone's, however, some of these staff members are not in the same city as I.T. support and as the staff members are not very computer/smartphone literate, it will be difficult for us to walk them through on how to change the e-mail settings, especially if the autodiscovery does not report the settings correctly to the phone and the domain/server settings has to be entered manually.
One staff member in particular, has a Blackberry curve 9300.
Any suggestion's will be appreciated as we would prefer to, as well as in the future, be able to update the phones with the necissary settings by means of some form of service message rather than error prone manual intervention.
Regards
Andre T. Dreyer
Solved!
Go to Solution.

OK...then the answer is, well, maybe. It would require compromise of your security ethics.
One way to do what you desire is for you to log into the users BIS account on their carriers BIS website and configure the email account there...doing so would, of course, require you to know the users BIS credentials. Of course, this also would require that the carrier actually have such a website...not all do.
Another way would be to ring up the users carrier and impersonate the user, and have the carrier agent configure the email account.
If the employer provides the devices as well as the service plan to the user, then I suppose the security compromise required is less since, technically, both belong to the company, not the user. But, if these are BYOD devices and/or the carrier account does not belong to the employer, then you would be in essence hacking into the users account to accomplish this.
Good luck!
Occam's Razor nearly always applies when troubleshooting technology issues!
If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
Join our BBM Channels
BSCF General Channel
PIN: C0001B7B4   Display/Scan Bar Code
Knowledge Base Updates
PIN: C0005A9AA   Display/Scan Bar Code

Similar Messages

  • Service Desk: Sending e-mail with a link to a message

    Hi out there,
    our SolMan is configured to send an email when a ServiceDesk message changes the
    state (ie. "in process" -> "customer action").
    Now i'd like to have the http link to the message (ITS) in the mail.
    There is a note on SSMP 733511 with exact this subject, but it does not describe
    how to bring the link in the mail.
    The mail is generated throu the smartform CRM_REMINDER_MAIL_01.
    Does anybody know how to modify this smartform? Or isn't that the right way?
    Thx for answers.
    Kurt

    Hi,
    Copy this standard smartform, and generate it as Z. And in this smartform you can insert the link into smartform.
    And change the name of the snmartform in the Action configuration to the name of Z.
    reward if helps.
    regards,
    mahantesh

  • How to call the collaboration service send e-mail

    Hello,
    I’m trying to call the send e-mail link command (clpGWSendMailLink) via an htmlb button.
    Does anybody know how to call a link command or a command group via an htmlb control? Or is there another way to realize?
    I couldn’t find any information. I also tried to find out which URL is called. But it also ended in smoke.

    Hi Ardiles,
    first, welcom on SDN!
    I'm almost sure that there is no trick to call this hardcoded. Please imagine that these commandos are totally embedded within the FlexUI framework, which cares about calling the commands etc.
    On the other hand, you can use the service without using the (FlexUI) command. Then you have to care about the visual side on your own but you can use the mailing logic of the service.
    Hope it helps
    Detlev
    PS: Please consider rewarding points if the answer helps. Thanks in advance!

  • Small issue in sending mail to sap-inbox via classes

    Hi All,
    I am working in sending SAP mail to sap-inbox via classes..
    Which i am able to work out..But got some minor struck off where when i am sending the mail from sap-report
    it is sucesfully reaching the user ....
    Issue is In the sap-inbox mail it is not only showing the
    Created: Sender user name
    it is also showing the Changed :Sender name only
    How to restrict the changed  should not display ...
    Waiting for your response....
    *Creates persistent send request
      TRY.
          L_SEND_REQUEST = CL_BCS=>CREATE_PERSISTENT( ).
    * Creating Document
          L_DOCUMENT_SAS = CL_DOCUMENT_BCS=>CREATE_DOCUMENT(
                                        I_TYPE  = 'HTM'
                                        I_TEXT  = I_CONTENT[]
                                        I_SUBJECT = 'Automated HRIS (SAP) Report' ).
    *PERFORM PREPARE_ATTACHMENT.
    * Adding Attachment
          CALL METHOD L_DOCUMENT_SAS->ADD_ATTACHMENT
            EXPORTING
              I_ATTACHMENT_TYPE    = C_EXT
    *          I_ATTACHMENT_SIZE    = L_SIZE
              I_ATTACHMENT_SUBJECT = 'Hr Details r.xls'
              I_ATT_CONTENT_HEX    = L_XML_TABLE.  "i_attach.
    *          I_ATT_CONTENT_TEXT   = l_XML_TABLE.
    Sas
    Edited by: saslove sap on Oct 22, 2009 7:05 AM
    Edited by: saslove sap on Oct 22, 2009 7:07 AM

    contd...
    * document to send request
          CALL METHOD L_SEND_REQUEST->SET_DOCUMENT( L_DOCUMENT_SAS ).
          DATA:LR_SENDER TYPE REF TO IF_SENDER_BCS,
               LR_SEND TYPE REF TO CL_BCS.
    * Preparing the sender object
    *      LR_SENDER = CL_CAM_ADDRESS_BCS=>CREATE_INTERNET_ADDRESS( sy-uname ).
          DATA: L1_UNAME TYPE SY-UNAME.
          L1_UNAME = SY-UNAME.
          LR_SENDER = CL_SAPUSER_BCS=>CREATE( L1_UNAME ).
    * Setting the sender
          CALL METHOD L_SEND_REQUEST->SET_SENDER
            EXPORTING
              I_SENDER = LR_SENDER.
    * E-Mail
          LOOP AT P_EADDR.
            TRANSLATE P_EADDR-LOW TO UPPER CASE.
            L_RECIPIENT = CL_SAPUSER_BCS=>( P_EADDR-LOW ).
            CALL METHOD L_SEND_REQUEST->ADD_RECIPIENT
              EXPORTING
                I_RECIPIENT  = L_RECIPIENT
                I_EXPRESS    = 'X'
                I_COPY       = ' '
                I_BLIND_COPY = ' '
                I_NO_FORWARD = ' '.
            IF SY-SUBRC EQ 0.
              WRITE:/'** SUCCESS:  Email Sent to', P_EADDR-LOW COLOR COL_NORMAL.
            ELSE.
              WRITE:/'** ERROR: Failed to send Email to',P_EADDR-LOW COLOR COL_NEGATIVE .
            ENDIF.
          ENDLOOP.
    *Trigger E-Mail immediately
          L_SEND_REQUEST->SET_SEND_IMMEDIATELY( ' ' ).
          CALL METHOD L_SEND_REQUEST->SEND( ).
          COMMIT WORK.
        CATCH CX_DOCUMENT_BCS INTO L_BCS_EXCEPTION.
        CATCH CX_SEND_REQ_BCS INTO L_SEND_EXCEPTION.
        CATCH CX_ADDRESS_BCS  INTO L_ADDR_EXCEPTION.
      ENDTRY.
    Edited by: saslove sap on Oct 22, 2009 9:02 AM

  • Outlook cannot send e-mail. Error: 530 Authentication Required

    Hello everyone,
    I'm new at this so I'm confused.  E-mails are sitting in my out box but I'm not getting any error messages.  When i trouble shoot e-mail settings, I get this error message: "Cannot send the message.  530 Authentication Required."   I would appreciate any and all help.

    Hey, Community Girl!  I just spent 2 days ripping my hair out over this same issue...  The answer was maddeningly simple/stupid.  In Outlook...  they ASK for your "user name" and "Password" (on the More Settings Tab).  What they
    actually WANT is your "email address" NOT your "user name", followed by your password.  This is easy.. I hope it works the same for you.
    In Outlook, go to Tools, Email Accounts, View or Change, click Next.  Highlight account information and click change.  In the lower right of the page... Click More Settings.
    Click the Outgoing Server Tab.
    Check the My outgoing server SMTP requires authorization.
    Check Log on Using:
    User Name:  Do NOT type your user name here... type your email address!
    Password:  Type in your password.
    Check the Remember password box.  OK
    That one small change FIXED 2 days of hair pulling on my part... I hope that does it for you too.
    Let me know...  I'd be interested if you fixed it.  Wish they had actually asked for what they wanted... User Name or Email Address ARE two different things!  Good luck!
    South Texan, you're a genius!  This 530 Authentication error has plagued me for 3 years now; when I call my internet service, they say it's a router firewall issue; when I call them, they say it's not their issue.  Changing the User Name field to
    my email address instead of my user account name worked!!!!! Thank you!!

  • Cannot get into E-mail settings on Storm2

    Just bought a Storm2 off Craigslist. I was able to activate it ok, everything works except for e-mail. I am not able to setup my Gmail account, when I try to get into "E-Mail Settings" I get an error message that says "There was an error trying to access the service. Please try again. Contact Verizon Wireless at 1-800-922-0204 or [email protected]"
    Customer service was clueless, they reset my e-mail settings but I'm still not able to get into the settings. Does anyone here have any ideas? I'm on the 29.99 BIS plan.
    Thanks

    Do you have a BlackBerry Data Plan enabled on your account with your carrier or mobile provider?
    You must, in order to get the RIM push email functions you are looking for, as well as addtional BlackBerry data services such as the internet browser, Facebook for BlackBerry, BlackBerry Messenger, and much more.
    So, call your carrier and inquire about having the BlackBerry Data Plan added to your account.
    Good luck.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Why am I unable to send e mails from my IPhone or IPad and get message rejected from outgoing server, message placed in outbox

    Why am I unable to send e mails from my iPhone, and get message rejected by server and message put in outbox.  I have tried changing server ports but to no avail.  I am not very technically minded so any suggestions in laymans terms please.  This is a big problem as I work away frequently and need to answer e mails.  This also happens when at home and on my own wifi.

    Hey Pam3008
    The article below will give some troubleshooting steps to resolve Mail issues.
    iOS: Troubleshooting Mail
    http://support.apple.com/kb/ts3899
    Thanks for using Apple Support Communities.
    Regards,
    -Norm G.

  • How to send HTML mail with images multipart/related message

    Hi,
    Could any body tell me how to send HTML mail with images in "multipart/related" message,if any body can give the code ,it would be helpful.
    Thanks

    Hi,
    Could any body tell me how to send HTML mail with
    ith images in "multipart/related" message,if any body
    can give the code ,it would be helpful.
    ThanksHi!
    Refer to
    http://developer.java.sun.com/developer/onlineTraining/JavaMail/index.html
    I've found it very helpful.
    Look at the last part for a code showing how to send HTML mail!
    Regards

  • Is There a size limitation for sending e-mail photos

    I am using the latest version of MS Entourage and my mail account is with .MAC
    Yesterday I highlighted two pictures in iphoto and clicked the e-mail icon but was then unable to send the mail. I got an error message. I deleted one of the phtos and still got the error.
    I then discovered the size dialog box and clicked "small" and was able to send one photo.
    I can receive mail with up to 20 attached Jpg items, But can't forward the same e-mail message. Is there a size limitation in Entourage or in .mac.
    Thanks

    There is no such limit with Entourage or Apple's Mail application but email account providers have an overall message size limit for received and sent messages.
    .Mac has an overall message size limit of 10 MB for received and sent messages which is a typical limit but I have a few friends and business associates who have a smaller overall message size limit of 5 MB. Although I can send a message that is up to 10 MB in size with my .Mac account, the message will not be accepted by the incoming mail server for the friends and business associates with a 5 MB message size limit.
    All files attached to a message must be encoded before being sent and decoded when received. Most email clients such as Entourage and Mail use MIME for attachment encoding/decoding which is the internet standard. A problem with MIME is it isn't very efficient. The encoding process increases the size of the pre-encoded file by roughly 50% of so. A file that is 5 MB in size (pre-encoded) will be roughly 7.5 MB in size due to the encoding process.
    What was the exact error message provided?

  • I am unable to send e-mails from my Outlook

    Everything was working ok, for ages. Suddenly I am unable o send e-mails from my Outlook.
    "The message I get is: 'Unable to send the message. Please verify the e-mail Address in your account properties'.
    When I 'Send a Test Message' from Outlook, Tools, Accounts. All actions are completed besides sending a test message when I also get the instruction.

    Hi
    If it happened suddenly so possibly it was a virus?
    I dont know why you are not able to send the e-mails.
    I think you should check the email account properties. Check the data of you POP3 and SMTP server.
    Im not a outlook expert but this options should be found somewhere in the email account properties.
    The last possibility would be deleting of the email account under outlook and then a new creation of the new account.

  • Can not send e-mail messages at times.

    Most of the time I am able to send e-mail but sometimes I get a message that says cannot send message using the server smtp.charter.net I do not need a password for this server and when I run diag I get green connection for both the pop server as well as smpt server. However the message will not send. Any ideas other then deleteing the message, because everything work fine after deleteing it.

    Yes, I got a green light for the server not sure if its port 25 though did not look. I deleted the message so I have to wait for it to happen again. This is an iMac 24 inch so it does not move around. I have it connected to the wireless home network and all other wireless routers are also encripted so it sould not switch routers.
    I was thinking that there might have been a bad char in the message that caused the trouble. Other thoughts, is that its a group message that hangs the server from time to time. Any ther ideas please let me know. Thanks.

  • Send to - Mail recipient does not attach files on new mail

    I'm browsing a network share containing some .txt files.
    I have full access to this share (in fact I'm the Owner of these .txt files).
    If right-click one of these and select "Send to - Mail recipient" Outlook open a new-message window but the .txt file is not attached.
    I think that the problem occours only with files over network share because if files are on my local unit i don't have problems.
    How can I fix?
    O.S. Windows 7 Pro 64-bit - Office 2010 Standard
    Thanks.

    Send to - Mail recipient function is deponds on the simple MAPI:
    http://msdn.microsoft.com/en-us/library/windows/desktop/dd296734(v=vs.85).aspx
    Please run "fixmapi" in the Windows Search bar and press Enter and then check if the issue still persists. Thanks.
    Cheers,
    Tony Chen
    Forum Support
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    If you have any feedback on our support, please contact
    [email protected]

  • Mail on success or error in message processing

    Hi experts
    I need to configure a scenario
    1. Receive idoc from an SAP system
    2. Convert the Idoc into File and Place it in the NFS File directory.
    3. On success of the message, I need to mail to SAP Owner regarding the success of the message.
    4. On error as well , i need the error details to the SAP Owner.
    I had configued all the basic steps in IR. I had struck with the BPM part.
    Please suggest with the steps in the BPM.
    Thnz

    hi Mohamed,
    For sending the mail on success or error in message processing you need to go to the runtime workbench and configure the scenario for mail alerts.
    You need to create the alert rules for the success scenario and the failure scenario.
    While creating the rules you can specify the message id's to which the mail should be sent.
    Please refer to the below link for more clarification.
    http://help.sap.com/saphelp_nw04/helpdata/en/80/942f3ffed33d67e10000000a114084/frameset.htm
    Kindly search SDN also as there are several threads in the forum answering the same question.
    Regards,
    Alpa.

  • When trying to send E-mail via AOL i get the message "rejected by the server because it does not allow relaying" I have checked settings as per answers to similar question

    When trying to send E-mail via AOL i get the message "rejected by the server because it does not allow relaying" I have checked settings as per answers to similar question

    From which account does the email not send?  When sending from an account, the iPad will first try to use the aoutgoing server for that account.  If it can't it will try the other accounts listed.in the setting on the iPad for that account.  It soulds like the server for the account is not working and that the alternate server is resjecting the messag since it did not originate ffrom the account associated with that server,  That is to prevent sending spam.

  • We had a contaminated email and now we cannot send emails . our service provider thinks problem in 'mail' settings but did not want to get into that area. Can you advise how we look into this

    we had a contaminated email and now we cannot send emails.  Our service provider advises that 'Mail' settings may be compromised.  but were not willing to get into resetting.   How can this be fixed ?

    jenfromwa wrote:
    we had a contaminated email and now we cannot send emails.
    Not exactly sure what you mean by contaminated, but there is currently no known e-mail that could impact the Apple Mail application as you have described.
    Without knowing who your e-mail provider is and what type of account (IMAP or POP3) we can't advise you as to what those settings might be.
    One way to fix it would be to delete the account from Apple Mail Preferences->Accounts and add it back.

Maybe you are looking for

  • How can I remove a line from a file?

    how ca i remove one or more than one line from a text file?

  • Error when reversing settlement back to Auc - Balance in transaction curren

    Hi, We get following error when reversing a settlement from asset back to Auc (using AIST): FI/CO interface : Balance in transaction currency Message No. RW022 This error only occurs when we settle a portion of the amount sitting in AuC and not the f

  • Once again, how to close file marked "edit in process"

    I have several times searched for answer on this, and the same thing keeps happening to me.  I open a jpeg in Organizer and then mvoe to edit.  BUt then I can't figure out how to save it or close it or whatever you are supposed to do.  I just got thr

  • Production Premium CS6 - Can't find in English

    Hi, I purchased Production Premium CS6 last year & have my proper paperwork such as the serial number.  I want to do a second install on my laptop.  I can't find the English version of the setup.  Can you tell me the right site? Thank you!!

  • JTextField.getText()

    Hi all, I put few JTextFields in an JApplet application. How can I output the content of JTextField? I tried two below but didn't work, it output nothing. jtextfield.getText() and String s = jtextfield.getText()