How do I forward text messages to my email?

How do I forward text messages to my email? I watch my email inputs. It would be convenient to have announcements of text messages arrive via email. Oherwise I have to login to comcast every time I want to find out about text messages. Being of the text-message-illiterate generation, I get very few text messages. So checking for them is mostly futile. If they were forwarded to my email, I would not have to look in two different places.  

After considerable poking around I found the right preferences page. I have forwarded ny text messages to my email !

Similar Messages

  • How do I forward text messages to my email account?

    I was able to do this in the past but cannot figure out how to do it now, running IOS 7.0.3.

    Hello wmann143,
    This is done by holding your finger on the desired message or attachment, then tapping more, finally tapping the .
    iPhone User Guide - Manage conversations
    http://help.apple.com/iphone/7/
    Cheers,
    Allen

  • I cant get my iphone to forward text messages to my email account

    I cant get my iphone to forward text messages to my email account

    What email provider are you trying to email to?
    I ran into this issue, and had to start emailing my other account because my old one was just acting weird with my iphone. (It worked fine for me with my gmail account)

  • In IOS 7 how do you forward text messages?

    In IOS 7 How do you forward a text message?

    Yea, I figured it out as well but they screwed this ALL up.  I get 100's of texts a day from Solar winds!  NOW, to forward I have to do this on EVERY friggen text I NEED to forward to my IT staff! 
    Then, there's the issue on DELETING texts!   In the past, you could either hit the "edit" button and then the delete the message OR swipe your finger to the right across the text (where you could see ALL your received texts) and a DELETE button would appear and you could delete texts.
    I've always wanted the texts to work as the email does.  You could click the edit button and then check off the text you wished to delete to make it even faster.  But NO, they made it a complete pain in the a&&!
    Please fix back like it was or better Apple!!!!

  • How do I forward text messages from iphone 5 to my mac computer

    How do I forward/transfer my iphone 5 text messages to my imac?

    If you sync/backup to iTunes, they're automatically included in your backup. Same as if you backup to iCloud...they're included. But, if you want to view them on your computer, you need third-party software, like this, to extract them from your phone:
    http://www.wideanglesoftware.com/touchcopy/

  • I want to forward text messages to an email I have an iphone 4??

    Hi
    I am trying to save some text messages , and send over to an email address from an iphone 4 any ideas....

    You can in the message conversation tap Edit button (top right) mark the conversation you want and tap Forward (bottom right)

  • How do I add text message to this email with PDF attachment?

    Good day, everyone!
    Okay, we have a "z"-version of program RFFOUS_T and some of its include codes.  One include code, RFFORIO6, has a form called MAIL_PDF_ADVICE.  It is in this form that we are emailing a remittance advice form.  The actual form is attached as a PDF file.
    Unfortunately, there's no text in the body of the email -- it's just the attachment -- so the users would like us to add a couple basic lines in the body of the email that explain the attachment.  I'm pretty new to using this particular FM and emailing the PDF attachment, and I've gotten stuck in my research trying to find out exactly how to do this.  I'm guessing this shouldn't be all that difficult, but I'm not finding the right solution.  Here's the form:
    *&      Form  mail_pdf_advice
          E-mail PDF advice
         -->IT_ADVICE     PDF form (output from Adobe server)
         -->I_PDF_LEN     length of PDF advice in bytes
    FORM mail_pdf_advice USING it_advice   TYPE solix_tab
                               i_pdf_len   TYPE i.
      DATA:
        lt_receivers       TYPE TABLE OF somlreci1 WITH HEADER LINE,
        l_user             LIKE soextreci1-receiver,
        ls_send_doc        LIKE sodocchgi1,
        lt_pdf_attach      TYPE TABLE OF sopcklsti1 WITH HEADER LINE.
      CHECK NOT finaa-intad IS INITIAL.
      CHECK finaa-nacha EQ 'I'.
    *--- determine E-Mail sender and recipient
      IF fsabe-usrnam EQ space.
        l_user = sy-uname.
      ELSE.
        l_user = fsabe-usrnam.         "Office-User des Sachbearb.
      ENDIF.
      lt_receivers-receiver = finaa-intad.
      lt_receivers-rec_type = 'U'.      "E-mail address
      APPEND lt_receivers.
      ls_send_doc-obj_descr =  itcpo-tdtitle.
      lt_pdf_attach-transf_bin = 'X'.
      lt_pdf_attach-doc_type   = 'PDF'.
      lt_pdf_attach-obj_langu  = reguh-zspra.
      lt_pdf_attach-body_start = 1.
      lt_pdf_attach-doc_size   = i_pdf_len.
      DESCRIBE TABLE it_advice LINES lt_pdf_attach-body_num.
      APPEND lt_pdf_attach.
      CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
        EXPORTING
          document_data              = ls_send_doc
          sender_address             = l_user
        TABLES
          packing_list               = lt_pdf_attach
          contents_hex               = it_advice
          receivers                  = lt_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.
    <error checking code snipped>
    Does someone know how to do this?  <b><REMOVED BY MODERATOR></b>  Thanks so much in advance!
    Dave
    Message was edited by:
            Alvaro Tejada Galindo

    Hi Dave,
    Table <b>contents_bin</b> is used to pass attachment file and <b>contents_txt</b> is used to pass mail body contents. You need to declare one more int table to give contents for mail body.
    For reference check the code below
    ut_message is for message body
    and ut_attach is having attachement file.
      FORM send_file_as_email_attachment TABLES ut_message
                                              ut_attach
                                        USING uv_email
                                              uv_mtitle
                                              uv_format
                                              uv_filename
                                              uv_attdescription
                                              uv_sender_address
                                              uv_sender_addres_type
                                     CHANGING uc_error
                                              uc_reciever.
      DATA:  l_error                TYPE  sy-subrc,
             l_reciever             TYPE  sy-subrc,
             l_mtitle               LIKE  sodocchgi1-obj_descr,
             l_email                LIKE  somlreci1-receiver,
             l_format               TYPE  so_obj_tp ,
             l_attdescription       TYPE  so_obj_nam ,
             l_attfilename          TYPE  so_obj_des ,
             l_sender_address       LIKE  soextreci1-receiver,
             l_sender_address_type  LIKE  soextreci1-adr_typ,
             l_receiver             LIKE  sy-subrc.
      DATA:   lt_packing_list    LIKE sopcklsti1 OCCURS 0 WITH HEADER LINE,
              lt_contents        LIKE solisti1   OCCURS 0 WITH HEADER LINE,
              lt_receivers       LIKE somlreci1  OCCURS 0 WITH HEADER LINE,
              lt_attachment      LIKE solisti1   OCCURS 0 WITH HEADER LINE,
              lt_object_header   LIKE solisti1   OCCURS 0 WITH HEADER LINE,
              l_cnt TYPE i,
              l_sent_all(1) TYPE c,
              lw_doc_data LIKE sodocchgi1.
      l_email               = uv_email.
      l_mtitle              = uv_mtitle.
      l_format              = uv_format.
      l_attdescription      = uv_attdescription.
      l_attfilename         = uv_filename.
      l_sender_address      = uv_sender_address.
      l_sender_address_type = uv_sender_addres_type.
    Fill the document data.
      lw_doc_data-doc_size = 1.
    Populate the subject/generic message attributes
      lw_doc_data-obj_langu = sy-langu.
      lw_doc_data-obj_name  = 'SAPRPT'.
      lw_doc_data-obj_descr = l_mtitle.
      lw_doc_data-sensitivty = 'F'.
    Fill the document data and get size of attachment
      CLEAR lw_doc_data.
      READ TABLE ut_attach INDEX l_cnt.
      lw_doc_data-doc_size =
         ( l_cnt - 1 ) * 255 + STRLEN( ut_attach ).
      lw_doc_data-obj_langu  = sy-langu.
      lw_doc_data-obj_name   = 'SAPRPT'.
      lw_doc_data-obj_descr  = l_mtitle.
      lw_doc_data-sensitivty = 'F'.
      CLEAR lt_attachment.
      REFRESH lt_attachment.
      lt_attachment[] = ut_attach[].
    Describe the body of the message
      CLEAR lt_packing_list.
      REFRESH lt_packing_list.
      lt_packing_list-transf_bin = space.
      lt_packing_list-head_start = 1.
      lt_packing_list-head_num = 0.
      lt_packing_list-body_start = 1.
      DESCRIBE TABLE ut_message LINES lt_packing_list-body_num.
      lt_packing_list-doc_type = 'RAW'.
      APPEND lt_packing_list.
    Create attachment notification
      lt_packing_list-transf_bin = 'X'.
      lt_packing_list-head_start = 1.
      lt_packing_list-head_num   = 1.
      lt_packing_list-body_start = 1.
      DESCRIBE TABLE lt_attachment LINES lt_packing_list-body_num.
      lt_packing_list-doc_type   =  l_format.
      lt_packing_list-obj_descr  =  l_attdescription.
      lt_packing_list-obj_name   =  l_attfilename.
      lt_packing_list-doc_size   =  lt_packing_list-body_num * 255.
      APPEND lt_packing_list.
    Add the recipients email address
      CLEAR lt_receivers.
      REFRESH lt_receivers.
      lt_receivers-receiver = l_email.
      lt_receivers-rec_type = 'U'.
      lt_receivers-com_type = 'INT'.
      lt_receivers-notif_del = 'X'.
      lt_receivers-notif_ndel = 'X'.
      APPEND lt_receivers.
      CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
        EXPORTING
          document_data              = lw_doc_data
          put_in_outbox              = 'X'
          commit_work                = 'X'
        IMPORTING
          sent_to_all                = l_sent_all
        TABLES
          packing_list               = lt_packing_list
          contents_bin               = lt_attachment
          contents_txt               = ut_message
          receivers                  = lt_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.
    Message was edited by:
            Amit Kumar

  • Hello do anyone know how to forward text messages to email

    Hello do anyone know how to forward text messages to your email???

    Very simple, at least on my Stratosphere. Tap on the message, then tap the Menu button and select Forward. In the To field, enter the desired e-mail address (or start typing a name from your contacts; it will pick up e-mail addresses from there). Press Send, and it goes.

  • How to forward text messages on os7

    How do u forward text messages with os7

    Press your finger on the text you want to forward. In the popup that appears tap on More...next tap the arrow at the bottom right of the screen then enter the person you want to forward it to.

  • How do i forward text messgaes

    How do I forward text messages?

    To: Norman Bates
    Thank you sooooo much! 
    There SHOULD be an easier way since the I-Phone can
    do just about everything else, but this will work for now  : )

  • Forwarding text messages from my iPhone4 to e-mail.

    Hi all,
    How can I forward text messages from my iPhone4 (iOS 5.0.1) to e-mail with the time and date stamps that are provided in the text messages? I understand that every text does not show a time and date stamp but it would be good if the stamps that are there would show up in the forward.
    Thanks...

    One the iPod try going to Settings>Messages>Send and Receive At and deleting/unchecking your phone number.

  • Why can't I forward text messages using iMessage to my email address?

    I recently upgraded my cell phone to an iPhone 5s.  I'm using iMessage and am unable to forward text messages to my email address.  Sometimes they deliver fine but on the whole they won't go through to my email.  Can anyone tell me why?  Or what I can do to get them to forward?  Thank you!

    Do you just mean while you are in the car? Or do you mean while you're connected to a system in the car? What happens when you try? Have you consulted your dealer to make sure you have the most up-to-date firmware on your car system?

  • Having trouble figuring out how to forward text messages.  Can someone tell me how to do that?  Where the forward button.  You used to be able to hit forward and put radio button on all the messages.  The screen looks blank to me.

    In the new iOS7, Having trouble figuring out how to forward text messages.  Can someone tell me how to do that?  Where the forward button.  You used to be able to hit forward and put radio button on all the messages.  The screen looks blank to me.

    In the new iOS7, Having trouble figuring out how to forward text messages.  Can someone tell me how to do that?  Where the forward button.  You used to be able to hit forward and put radio button on all the messages.  The screen looks blank to me.

  • How to send a text message to a group of people and save the list for next time?

    how to send a text message to a group of people and save the list for next time from an iphone 4s?

    Hey there ipremacha,
    It sounds like you need to enable Text Message Forwarding on your iPhone for your iPad to send MMS/SMS messages through your phone.
    Connect your iPhone, iPad, iPod touch, and Mac using Continuity
    Go to Messages > Text Message Forwarding, and enable the device(s) you would like to forward messages to.
    Your Mac, iPad, or iPod touch will display a code. Enter this code on your iPhone to verify the SMS feature.
    Thank you for using Apple Support Communities.
    Regards,
    Sterling

  • E90 unable to forward text messages after software...

    Hi,
    I recently updated my e90 to 300.34.84 software and now I am unable to forward text messages. You can only forward by manually typing in the numbers. If you choose via the "add recipient" option, it brings you to your contacts  list and you can mark "x" on the box beside the name however there is no "ok" option, just a "back" option which if chosen, brings you back to the text message you want to forward without any name on the top. Any help on how to solve this is much appreciated

    try  doing the following on the senders iPhone : http://ios.wonderhowto.com/how-to/fix-delayed-imessages-text-messages-after-upgr ading-ios-7-0148663/
    then see if you can receive SMS from him.

Maybe you are looking for