Sending mail to email id

dear all,
i want to send mail..
in that program i am using submit call one program and output of that i hv to send to email as pdf attachment.....
in regular execution its fine working but when i m running in background it will not work properly. as well as i m  running in background then also it not create any spool of that.
pls check my code.
SUBMIT YPPDAILYUPDATE
with pstngdt in temp
with entdate eq ' '
with posdate eq 'X'
with rdata eq 'X'
with logic eq ' '
with high eq 'X'
with trend eq ' '
AND RETURN
i hv taking the help for sending mail of
http://www.sapdevelopment.co.uk/reporting/rep_spooltopdf.htm
i want output of this calling program will be make spool & send as a .pdf attachment
for that wht i hv to do.....
pls help....!!
its a great for me..
regards,
Arpit.

Arpit,
    I am enclosing the sample code to trigger an email, The logic for this is in comments, check this I am shure yuor problem will be solved.
*& Report  ZGBL_SLA_PER
REPORT zgbl_sla_per NO STANDARD PAGE HEADING LINE-COUNT 26(3) MESSAGE-ID
zmsg2.
DECLARATION OF DB TABLES
TABLES: zncrfid, zrule_id.
DECLARATION OF INTERNAL TABLES
DATA: BEGIN OF ncrf OCCURS 0,
        zncrf_id(15) TYPE c,
        zncrf_l4_name(60) TYPE c,
        z9gl_sla_flag(1) TYPE c,
        zowners(30) TYPE c,
        zowners_value(30) TYPE c,
        zdate_changed(8) TYPE n,
        ztime_changed(6) TYPE n,
      END OF ncrf.
*DATA: NCRF LIKE ZNCRFID OCCURS 0 WITH HEADER LINE.
DATA: BEGIN OF it_ruleid OCCURS 0,
        zrule_id(10) TYPE c,
        zowners(30) TYPE c,
        zowners_value(30) TYPE c,
      END OF it_ruleid.
*data: wa like ncrf occurs 0 with header line.
DATA: BEGIN OF itab OCCURS 0,
                zncrf_id(15) TYPE c,
                zncrf_l4_name(60) TYPE c,
                z9gl_sla_flag(1) TYPE c,
                zowners(30) TYPE c,
                zowners_value(30) TYPE c,
                zdate_changed(8) TYPE n,
                ztime_changed(6) TYPE n,
END OF itab.
data: file(10) type c,
         dates type date.
EMAIL DECLARATION
*CONSTANTS: c_subject LIKE sodocchgi1-obj_descr VALUE 'Subject',
*c_tab TYPE c VALUE cl_abap_char_utilities=>horizontal_tab.
*DATA: g_time TYPE char8,
*g_email(40) TYPE c,
*g_sent_all(1) TYPE c,
*g_doc_data LIKE sodocchgi1,
*g_error TYPE sy-subrc.
*DATA: i_message LIKE solisti1 OCCURS 0 WITH HEADER LINE,
*i_packing_list LIKE sopcklsti1 OCCURS 0 WITH HEADER LINE,
*i_receivers LIKE somlreci1 OCCURS 0 WITH HEADER LINE.
*DATA: BEGIN OF mailid OCCURS 0,
       zemail_id TYPE zrule_id-zemail_id,
     END OF mailid.
*data: mailid like zrule_id occurs 0 with header line.
UPLOADING FLAT FILE TO INTERNAL TABLE NCRF
CALL FUNCTION 'GUI_UPLOAD'
  EXPORTING
   filename                      = 'C:\VAMSY\file.txt'
   filetype                      = 'ASC'
   has_field_separator           = 'X'
  HEADER_LENGTH                 = 0
  READ_BY_LINE                  = 'X'
  DAT_MODE                      = ' '
  CODEPAGE                      = ' '
  IGNORE_CERR                   = ABAP_TRUE
  REPLACEMENT                   = '#'
  CHECK_BOM                     = ' '
IMPORTING
  FILELENGTH                    =
  HEADER                        =
  TABLES
    data_tab                      = ncrf[]
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.
ELSE.
  IF sy-subrc EQ 0.
Checking internal table ncrf is empty then
*delete records from TABLE ZNCRF_ID ******************************
    IF ncrf[] IS INITIAL.
      MESSAGE i003(ZMSG2).
    ELSE.
      DELETE FROM zncrfid.
    ENDIF.
*****Values are read from rule table and checking owner and owner_value
*from zrule_id table and inserted into ZNCRFID **************
    SELECT * FROM zrule_id INTO CORRESPONDING FIELDS OF TABLE it_ruleid
    WHERE zrule_id IN ('OWNER1', 'OWNER2').
               append IT_RULEID.
    LOOP AT ncrf WHERE z9gl_sla_flag EQ 'Y'.
      READ TABLE it_ruleid WITH KEY zowners = ncrf-zowners
      zowners_value = ncrf-zowners_value.
      IF ncrf-zowners = it_ruleid-zowners AND ncrf-zowners_value =
      it_ruleid-zowners_value AND ncrf-z9gl_sla_flag ='Y'.
        itab-zncrf_id = ncrf-zncrf_id.
        itab-zncrf_l4_name = ncrf-zncrf_l4_name.
        itab-z9gl_sla_flag = ncrf-z9gl_sla_flag.
        itab-zdate_changed = sy-datum.
        itab-ztime_changed = sy-uzeit.
        itab-zowners = it_ruleid-zowners.
        itab-zowners_value = it_ruleid-zowners_value.
        APPEND itab.
      ENDIF.
    ENDLOOP.
modify database table zncrfid FROM  ITAB
    LOOP AT itab.
      WRITE:/ itab-zncrf_id, itab-zncrf_l4_name, itab-z9gl_sla_flag,
      itab-zowners, itab-zowners_value, itab-zdate_changed,
      itab-ztime_changed.
      zncrfid-zncrf_id = itab-zncrf_id.
      zncrfid-zncrf_l4_name = itab-zncrf_l4_name.
      zncrfid-z9gl_sla_flag = itab-z9gl_sla_flag.
      zncrfid-zowners = itab-zowners.
      zncrfid-zowners_value = itab-zowners_value.
      zncrfid-zdate_changed = itab-zdate_changed.
      zncrfid-ztime_changed = itab-ztime_changed.
      INSERT INTO zncrfid VALUES zncrfid.
    ENDLOOP.
  ENDIF.
ENDIF.
*CALL FUNCTION 'DATE_TO_DAY'
        EXPORTING
            DATE = sy-datum
        IMPORTING
            WEEKDAY = file.
**CHECKING FOR THE FIRST MONDAY OF THE MONTH.
     dates = sy-datum.
     shift dates by 6 places left.
     if file CO 'monday' and dates < 7 and dates >= 1.
     else.
         message e004(zmsg2).
     endif.
EMAIL SEND TO OWNERS LIST
**Fill the mail body in i_message.
get email id's from database into internal table et_mailid
Fill the document data.
*g_doc_data-doc_size = 1.
Populate the subject/generic message attributes
*g_doc_data-obj_langu = sy-langu.
*g_doc_data-obj_name = 'SAPRPT'.
*g_doc_data-obj_descr = c_subject .
*g_doc_data-sensitivty = 'F'.
Describe the body of the message
Information about structure of data tables
*CLEAR i_packing_list.
*REFRESH i_packing_list.
*i_packing_list-transf_bin = space.
*i_packing_list-head_start = 1.
*i_packing_list-head_num = 0.
*i_packing_list-body_start = 1.
*DESCRIBE TABLE i_message LINES i_packing_list-body_num.
*i_packing_list-doc_type = 'RAW'.
*APPEND i_packing_list.
Add the recipients email address
*LOOP AT mailid.
*CLEAR i_receivers.
*i_receivers-receiver = mailid-zemail_id.
*i_receivers-rec_type = 'U'.
*i_receivers-com_type = 'INT'.
*i_receivers-notif_del = 'X'.
*i_receivers-notif_ndel = 'X'.
*APPEND i_receivers.
*ENDLOOP.
Call the FM to post the message to SAPMAIL
*CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
*EXPORTING
*document_data = g_doc_data
*put_in_outbox = 'X'
*commit_work = 'X'
*IMPORTING
*sent_to_all = g_sent_all
*TABLES
*packing_list = i_packing_list
*contents_txt = i_message
*receivers = i_receivers
*EXCEPTIONS
*too_many_receivers = 1
*document_not_sent = 2
*document_type_not_exist = 3
*operation_no_authorization = 4
*parameter_error = 5
*x_error = 6
*enqueue_error = 7
*OTHERS = 8.
Store function module return code
*g_error = sy-subrc.
Get i_receivers return code
*LOOP AT i_receivers.
*ENDLOOP.
**Instructs mail send program for SAPCONNECT to send email(rsconn01)
*WAIT UP TO 2 SECONDS.
*IF g_error EQ 0.
*SUBMIT zgbl_sla_per WITH mode = 'INT'
*WITH output = 'X'
*AND RETURN.
REWARD IF FOUND USEFULL,
Cheers,
Ram.

Similar Messages

  • Workflow send mail to email addresses

    Hi,
    I have created a workflow wherein i have insrted a user decision node and 2 output is there one is accept and another one reject.
    I have added send mail node on both accept and reject and the thing is that in recipient address is put as email address. The email address that i put is for accept is workflow inititor and for reject is my own gmail address.
    Now when i execute workflow and click on accept button and check workflow log i get details for step where i found that background work item is created and agent name. Why is it so and where i can get the result ? and when i click on agent in that there is pushbutton for communication where there is no email address is maintained how can i maintain it ?
    Please help me out..even for reject tab i have given  my own gmail address. What will happen if i click on reject tab?
    Thanks
    Parag

    Hi,
    In your case what will happen is:--
    1> when you recieve the workitem in the sap inbox and you click on it.....it will show decision buttoons.
    2> As you have put send mail task in both accept & rejevt branch ...it should trigger mail based on your
         action and send it to extenal mail id.
    3> Now if you click on accept button ....... and the mail task which you have inserted will trigger mail to
         id which you have maintained.
    4> When you click on the reject button............ it will send mail to id which you have maintained in
         task.    
    5> If u you have set mail id to sap id of user then you can see it in Tcode SBWP.If you are sending mail
        to external mail id( outlook, gmail etc)........it will be visible in your external mail inbox if SCOT
         configuration are properly set in your system for SMTP node.You can still see the external mail in
         sap system in Tcode SOSG.

  • Cannot send mail from newsletter server and Server error: Unable to relay

    We have newsletter server. Sometimes we sent mail by our exchange 2010 server. But recently we are unable to send mail to external mail server. we sent mail by newsletter server within a domain now. We need to solve. Pls. check below log file and provide
    how to solve it.
    Sender ID: [email protected]
    our domain: www.silkways.net
    LOG:
    Status Msg : The email details entered successfully into the database.
    Status Msg : The email details entered successfully into the database.
    Access Level : 1
    MAIL SENT TO : [email protected]
    FAILED TO SEND MAIL TO : [email protected]
    Error : SMTP Error: The following recipients failed: [email protected]<p>SMTP server error: 5.7.1 Unable to relay
    </p>
     FAILED TO SEND MAIL TO : [email protected]
    Error : The following From address failed: [email protected]<p>SMTP server error: 5.5.2 Sender already specified
    </p>
    FAILED TO SEND MAIL TO : [email protected]
    Error : SMTP Error: The following recipients failed: [email protected]<p>SMTP server error: 5.7.1 Unable to relay
    </p>
     FAILED TO SEND MAIL TO : [email protected]
    Error : The following From address failed: [email protected]<p>SMTP server error: 5.5.2 Sender already specified
    </p>
     FAILED TO SEND MAIL TO : [email protected]
    Error : The following From address failed: [email protected]<p>SMTP server error: 4.7.0 Too many errors on this connection, closing transmission channel
    </p>
    FAILED TO SEND MAIL TO : [email protected]
    Error : SMTP Error: The following recipients failed: [email protected]<p>SMTP server error: 5.7.1 Unable to relay
    </p>
     FAILED TO SEND MAIL TO : [email protected]
    Error : The following From address failed: [email protected]<p>SMTP server error: 5.5.2 Sender already specified
    </p>

    Hi,
    Since you are able to send emails to internal domain i assume the application server IP address already allowed into Receive Connector.
    To relay application emails to external domain you should enable Externally Secured box in the Authentication Tab of the particular Receive Connector.
    Kottees :My Blog Please mark it as an answer if it really helps you.

  • ORA-29279: SMTP permanent error: To Send Mail from Oracle 10g (10.2.0.1)

    I have installed Oracle 10g (10.2.0.1) on Windows XP (SP2) machine at my home PC.There is a broadband connection on my home PC.I have installed UTL_MAIL package and then set SMTP_OUT_PARAMETER by the following SQL Statement.
    My machine IP address is 192.168.0.3
    SQl> alter system set smtp_out_server = 'smtp.bsnl.in:25' scope = 25;
    Then we run the following script.
    BEGIN
    UTL_MAIL.SEND(
    SENDER => '[email protected]',
    RECIPIENTS => '[email protected]',
    SUBJECT => 'Testing UTL_MAIL',
    MESSAGE => 'The receipt of this email means'||
    'that it works for UTL_MAIL'
    END;
    Then following error message comes.
    BEGIN
    ERROR at line 1:
    ORA-29279: SMTP permanent error: 553 Authentication is required to send mail as
    <[email protected]>
    ORA-06512: at "SYS.UTL_SMTP", line 21
    ORA-06512: at "SYS.UTL_SMTP", line 99
    ORA-06512: at "SYS.UTL_SMTP", line 222
    ORA-06512: at "SYS.UTL_MAIL", line 407
    ORA-06512: at "SYS.UTL_MAIL", line 594
    ORA-06512: at line 2
    Can anybody suggest the solution of the above problem.

    Hi,
    is your smtp server configured to use anonymous connection?
    Attackwave
    Reply Code       Description
    211      System status, or system help reply
    214      Help message [Information on how to use the receiver or the meaning of a particular non-standard command; this reply is useful only to the human user]
    220      <domain> Service ready
    221      <domain> Service closing transmission channel
    250      Requested mail action okay, completed
    251      User not local; will forward to <forward-path>
    252      OK, pending messages for node <node> started. Cannot VRFY user (for example, info is not local), but will take message for this user and attempt delivery.
    253      OK, <messages> pending messages for node <node> started
    354      Start mail input; end with <CRLF>.<CRLF>
    355      Octet-offset is the transaction offset
    421      <domain> Service not available, closing transmission channel (This may be a reply to any command if the service knows it must shut down.)
    450      Requested mail action not taken: mailbox unavailable [for example, mailbox busy]
    451      Requested action terminated: local error in processing
    452      Requested action not taken: insufficient system storage
    453      You have no mail.
    454      TLS not available due to temporary reason. Encryption required for requested authentication mechanism.
    458      Unable to queue messages for node <node>
    459      Node <node> not allowed: reason
    500      Syntax error, command unrecognized (This may include errors such as command line too long.)
    501      Syntax error in parameters or arguments
    502      Command not implemented
    503      Bad sequence of commands
    504      Command parameter not implemented
    521      <Machine> does not accept mail.
    530      Must issue a STARTTLS command first. Encryption required for requested authentication.
    534      Authentication mechanism is too weak.
    538      Encryption required for requested authentication mechanism.
    550      Requested action not taken: mailbox unavailable [for , mailbox not found, no access]
    551      User not local; please try <forward-path>
    552      Requested mail action terminated: exceeded storage allocation
    *553      Requested action not taken: mailbox name not allowed [for example, mailbox syntax incorrect]*
    554      Transaction failed

  • "Send As" an Email Alias

    I am trying to figure out how to basically set the "from" field in Mail. From what i am reading, i have to add the account in the account section. But, if you have "send as" rights to a group, there is no password. I can set everything, and i guess authenticate as myself, but i am still getting a "cant login" error on the SMTP server.
    Has anyone ever setup "Send As" to a group email address?

    Its on a hosted exchange. I do not want it to check for mail, i just need it to send out as that user.
    Example
    My email address ([email protected]) and i am part of [email protected]
    When i setup my account ([email protected]), i get all my mail. Anyone that sends mail to [email protected] , everyone in that group gets the mail in the inbox. But now i want to send out as [email protected] but i want to change the display name to show "sales" or whatever.
    So, i just need to "send as" sales
    Does that make sense?
    Thanks for your help

  • TS3899 Can't send mail from iPad 2

    My wife's iPad 2 gives an error message "Cannot send mail SMPT: [email protected]@smpt.live.com is incorrect" It seems that two email addresses have concatinated.  Any help would be much appreciated.

    iOS: Unable to send or receive email
    http://support.apple.com/kb/TS3899
    Can’t Send Emails on iPad – Troubleshooting Steps
    http://ipadhelp.com/ipad-help/ipad-cant-send-emails-troubleshooting-steps/
    Setting up and troubleshooting Mail
    http://www.apple.com/support/ipad/assistant/mail/
    Using a POP account with multiple devices
    http://support.apple.com/kb/ht3228
    iOS: Adding an email account
    http://support.apple.com/kb/HT4810
    iOS: Setting up an Outlook.com, Hotmail, Live, or MSN email account
    http://support.apple.com/kb/ht1694
    iPhone, iPad, iPod touch: Microsoft Outlook 2003, Outlook 2007, Outlook 2010 may not display contacts and calendars after sync
    http://support.apple.com/kb/TS1944
    Server does not allow relaying email error, fix
    http://appletoolbox.com/2012/01/server-does-not-allow-relaying-email-error-fix/
    Why Does My iPad Say “Cannot Connect to Server”?
    http://www.ehow.co.uk/info_8693415_ipad-say-cannot-connect-server.html
    How to Delete Email on the iPad
    http://ipad.about.com/od/iPad_Guide/ss/How-To-Delete-Email-On-The-Ipad.htm
    How to Mass Delete Emails from iPhone and iPad Inbox (with video)
    http://suiteminute.com/how-to-mass-delete-emails-from-iphone-and-ipad-inbox/
    How to add, send and open iPad email attachments
    http://www.iskysoft.com/apple-ipad/ipad-email-attachments.html
    How to Sync Contacts with Your iPad Using iTunes
    http://www.dummies.com/how-to/content/how-to-sync-contacts-with-your-ipad-using- itunes.html
    iOS: ‘Mailbox Locked’, account is in use on another device, or prompt to re-enter POP3 password
    http://support.apple.com/kb/ts2621
    iCloud: Create a group and add contacts to it
    http://support.apple.com/kb/PH2667
    eMail Groups - You can use a third party app that many users recommend.
    MailShot -  https://itunes.apple.com/us/app/mailshot-pro-group-email-done/id445996226?mt=8
    Group Email -  https://itunes.apple.com/us/app/mailshot-pro-group-email-done/id445996226?mt=8
    iPad Mail
    http://www.apple.com/support/ipad/mail/
    Configuration problems with IMAP e-mail on iOS with a non-standard SSL port.
    http://colinrobbins.me/2013/02/09/configuration-problems-with-imap-e-mail-on-ios -with-a-non-standard-ssl-port/
    Try this first - Reset the iPad by holding down on the Sleep and Home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons. (This is equivalent to rebooting your computer.)
    Or this - Delete the account in Mail and then set it up again. Settings->Mail, Contacts, Calendars -> Accounts   Tap on the Account, then on the red button that says Remove Account.
    How to delete an email account on your iPad
    http://www.shoppepro.com/support/knowledgebase/228/How-to-delete-an-email-accoun t-on-your-iPad.html
     Cheers, Tom 

  • Email attachment name in sender mail adapter to the receiver file adapter

    HI ,
    Ths is regarding email to file scenario. I am trying to create file (in rceiver file adapter) with the same name as the email attachment that i read from mail sender adapter. I want ro use adapter module for this. I could find from blogs that there is module - GetAttachmentName - available that i can use for this in sender mail adapter.
    Can you please let me know what whetehr i neeed to mention any module key and parameters for this.
    I assume , i need to do following steps :Please confirm.
    1. i can use this module - after payload swap module and before standard mail adapter module in sender mail adapter
    2. select ASMA option in advanced tab in sender mail adapter
    3. In receiver file adapter select ASMA option in advanced tab in sender mail adapter
    4. Also select file name option in ASMA in sender mail adapter
    Thanks,
    Vamsi

    Hi Vamsi,
    your scenario is also described here: Re: sender mail adapter - attachment name
    If you use the Module getAttachmentName, which is described here,
    http://wiki.sdn.sap.com/wiki/display/XI/AdapterModulePI7.0GetAttachmentName
    your scenario should work as you described it.
    You just need to make sure that the Attachment Name that you read in the first place, is mapped to the Filename Attribute of the
    Fileadapter (http://sap.com/xi/XI/System/File/FileName).
    regards,
    Daniel

  • Sender mail adapter - filter emails by attachment?

    Dear experts,
    I have a sender mail adapter that picks an XSL (EXCEL) attachment from an incoming email and converts it (with a custom adapter module) to XML.
    But now how can I make the adapter only process emails with XLS - attachments? In that Inbox I also have emails with HTML-attachments for example. And now my adapter also wants to process those messages.
    In my adapter module that makes XLS to XML I see an exception in RWB but the message still gets through to SXMB_MONI where it gets stuck with a red flag.
    Can I somehow tell the adapter to only process emails with XLS attachments?
    Or can I stop the processing in the adapter module that converts XLS to XML?
    Thank you for any input or ideas on this!
    Best regards,
    Peter
    PS: I am using this code to convert XLS to XML:
    http://wiki.sdn.sap.com/wiki/display/ABAP/AdapterModuleToReadExcelFilewithMultipleRowsandMultiple+Columns

    Hello ChizzT,
    Thank you for your idea. I went with this one and it worked.
    Best regards,
    Peter

  • TS3899 I am having issues with both my iPad and iPhone 5C in trying to send email from my home email account. It will receive email but I can't send email, each time I try an error message comes up.  The error message is: Cannot Send Mail; Acopy has been

    The error message that is received is: Cannont Send Mail; A copy has ben placed in your Outbox. The recipient [email protected] was rejected by the server.
    Is this a problem in the way the accounts have been set up or with my local email server?

    Check the parameters in your email account against what is recommended by your email provider.
    Settings > Mail, Contacts, Calendars > account
    Have you contacted the support contact at your email provider?

  • We purchased a new iPad2 and registered it using a 'new' iCloud email/ID. We are unable to send email from the iPad and iPhone. The error is: Cannot send mail. The user name or password for iCloud is incorrect.

    We purchased a new iPad2 and registered it using a 'new' iCloud email/ID. We are unable to send email from the iPad and iPhone. The error is:>> Cannot send mail. The user name or password for iCloud is incorrect.

    About ~20 hours later, this ended up solving itself. We can send email using the '.icloud' email from both the iPad and iPhone.  Advise would be 'wait' before you start seeking alteranatives like yahoo, hotmail, etc.  This definitely is a convenient way to keep all your 'cloud' information in a centralized place, including the common email...

  • I am trying to email pictures from my ipad to my email address on my computer and I have been going along nice but now I get a message that says "cannot send mail the message was rejected by the server"  can't see to figure out why it stopped sending now.

    I have been emailing pictures from my ipad to my computer and have been going along nicely and now when I went to send 5 pictures to my computer from my ipad I am getting a message that says " cannot send mail The message was rejected by the server"  cannot understand why this is happening and have not been able to fix.  Now when I try to send pictues even to another email address I am getting the same message.
    Help.

    Email may not be the best way to move pictures.
    There are lots of ways of moving files.
    A simple and popular way to copy files and share files among your devices.
    https://www.dropbox.com/
    "Box lets you store all of your content online, so you can access, manage and share it from anywhere. Integrate Box with Google Apps and Salesforce and access Box on mobile devices" Rated the most secure cloud storage by SkyHigh Networks.
    https://www.box.com/
    Using iTunes to transfer files:
    http://support.apple.com/kb/HT4094?viewlocale=en_US&locale=en_US
    Files Connect -- "Cloud Storage services like Dropbox, MobileMe iDisk, Google Docs/Picasa, Facebook photos, FTP, SFTP, WebDAV ... AFS (Apple File Shares) SMB (Windows shares)  protocols"
    https://itunes.apple.com/us/app/files-connect/id404324302?mt=8
    Windows File server
    http://itunes.apple.com/us/app/filebrowser-access-files-on/id364738545?mt=8
    "The kiteworks mobile file sharing solution provides secure creation, viewing, and sharing of enterprise content on smartphones and tablets while providing IT and security teams the administrative controls to manage user privileges and access rights necessary to ensure enterprise security and compliance."  " Includes choice of private cloud on-premise."
    http://www.accellion.com/solutions/mobile-enablement/mobile-file-sharing
    "Dukto is a simple application that allows you to share files between devices connected to the same (wireless) LAN network."
    http://www.tidal.it/?page_id=309&lang=en
    http://www.msec.it/blog/?page_id=11

  • I have 5 email accounts.  On one account I receive email, however, in responding to the email from this one account I get the following message "Cannot send Mail" A copy has been placed in ur outbox.  The recipient was rejected by the server?

    when I respond to the email message I get the following:  Cannot Send Mail  -- A copy of this message has been placed in your Outbox.  The recipient "[email protected]" was rejected by the server?

    when I respond to the email message I get the following:  Cannot Send Mail  -- A copy of this message has been placed in your Outbox.  The recipient "[email protected]" was rejected by the server?

  • I updated to 5.0 today and now when I try to email from my phone, I am thwarted by the pop-up, "cannot send mail. a copy has been placed in my outbox. the recipient (email address) was rejected by the server.  I need help, please.

    I updated to 5.0 today.
    Now, when I try to email from my phone, I am block, thwarted, rejected by the following message:
    Cannot Send Mail
    A copy has been placed in your Out Box.  The recipient (enter email here) was rejected by the server.
    This happens with my business address.  Receiving works.... sending doesn't.
    My SBC Global address on this same phone is fine...receiving and sending.
    What to do?  I'm stressed.
    Ray

    Hi,
    I had the same issue on my iPhone 5S.  My internet/email provider told me to uncheck (turn off) USE SSL under Mail settings, and it worked perfectly for me.

  • My iPhone 5c won't send iMessages, snapchats, email from the Mail app, and it won't load YouTube. Other internet apps like Pandora and Instagram work fine though. Any suggestions on how I can fix this?

    A couple days ago I first noticed the problem when snapchats would appear on my lock screen but when I opened the app I kept getting the error message that the app was not able to refresh my story. Then the next day I was no longer able to send iMessages, they wouldn't go through and would only reach the second party when I sent them as text messages. Also, YouTube won't load and Mail won't send or receive email. I've already tried restarting my phone but there was no change. At first I thought my network connection was the problem but Instagram, Safari, Vine and Pandora all work perfectly. Any suggestions?

    Try this procedure to be sure of a proper restart.
    Close all open apps by double-tapping the home button, then swiping up and off the screen with the app window (not the smaller icon).
    Reset your device: hold down the home button along with the sleep/wake button until the screen goes black and you see the Apple, then let go. (No data loss)
    I would also try: Settings > General > Reset > Reset Network Settings

  • Cannot send mail from iPhone using Godaddy account/email

    Was working perfectly until recently. Incoming mail still ok.
    Now get error message when sending mail "Cannot Send Mail - The connection to the outgoing server "smtpout.secureserver.net" failed.
    Have tried various fixes including using cwmx.com server, other ports and SSL on and off but no luck.
    Have spoken to Godaddy support but they can't help as say must be local issue with iPhone.
    Is GoDaddyGuy out there?

    SizzyB and Joe,
    I've read over your posts and see that you've both tried a few different troubleshooting steps with our support. The next step would be removing the whole email address from your iPhone and setting it back up. When you set up the email address, you should use the step by step walk through instructions available at http://help.godaddy.com/article/3423.
    SizzyB, please note that cwmx.com is an AT&T specific server. Your UK provider might list a comparable SMTP server as a default or you might need to contact them to get their settings.
    Joe, I would also like to note that you would specifically need to have our Unlimited email plan to utilize the IMAP service feature.
    If either of you have further issues, please post the full details (including any errors messages you receive) and we'll continue to work on a solution.

Maybe you are looking for

  • Remote Desktop Connection to ASA 5515x

    Hi Guys, I have ASA 5515x and it has already Internet Connection since my firewall is not "production". So right now I'm trying to configure a Remote Session just for a test and eventually I was not able to connect from it. I followed the instruction

  • RE: RE: Function keys and droplists

    I had to implement the same problem in a window. I wanted Ctrl-F to be the same as the "Fetch" button. I forgot the SetAsFunctionKey existed, so I created a Menu choice with a shortcut of "Find." I have had no problems, when Ctrl-F is pressed the "me

  • Connecting Samsung Blu Ray BD-D6700 to wireless network

    I got the Samsung BD-D6700 Blu Ray for Xmas and have not been able to set it up wirelessly, it doesn't see my network. Tried contacting Samsung support but they seem to think it is my Fios Router. Has anybody else had this issue and if so how did you

  • My skype credit is getting utilize first though i ...

    HI All I will appriciate your clarification on my below question. I m have 2400 Mins subscription min to india , but when ever i m making call to india skype is using my skype credit. please clarify what logic behind this calculation. Thanks Solved!

  • Preloader to also preload external f4v files in main movie?

    n00b alert... I did search the forum (and several others online), but either the code got too complicated for me to even attempt to adjust it, or I didn't find a relevant answer. So I really hope someone here can help me out. I've found a preloader c