How to make iphone send plaintext emails?

hi, I just want my phone to send pure plaintext messages. It actually sends some basic HTML formating, although it may seem plaintext, it is not.

I just sent a plaintext mail to myself from the iOS Mail app and it arrived as plaintext. Even viewing the raw source of the message showed no HTML whatsoever.
Are you sure it's not your email provider or webmail site that isn't adding HTML for display purposes?

Similar Messages

  • How can I active  send by email button in reader

    Send by email button works perfectly in acrobat pro. But it does not work in reader.
    How can I active send by email button in reader?
    Please Suggest me......

    Thanks to join  in this field.
    I have got answer.

  • How to change the sender's email (class  cl_sapuser_bcs) ?!?

    Hi Friends,
    Currently, I use class CL_BCS to sending an email. I've set sender as below :
    data: sender type ref to cl_sapuser_bcs.
    sender = cl_sapuser_bcs=>create( sy-uname ).
    call method send_request->set_sender
    exporting
    i_sender = sender.
    But I don't know how to change the sender's email to a specific email address, i.e: [email protected]
    Anyone can tell me how?
    Thanks,
    Gy

    DATA: recipient          TYPE REF TO if_recipient_bcs.
    sender = cl_sapuser_bcs=>create( sy-uname ).
          CALL METHOD send_request->set_sender
            EXPORTING i_sender = sender.
        --------- add recipient (e-mail address) -----------------------
        create recipient - please replace e-mail address !!!
         <b> recipient = cl_cam_address_bcs=>create_internet_address(
                                            '[email protected]').</b>
        add recipient with its respective attributes to send request
          CALL METHOD send_request->add_recipient
            EXPORTING
              i_recipient  = recipient
              i_express    = 'X'.
    Message was edited by:
            Hymavathi Oruganti

  • Does anyone know how to make Safari send e-mail? Mine won't and hasn't for some time.

    I have been having trouble for some time sending e-mails by Safari - no problems with Mail - Does anyone know how to make Safari send e-mails?

    When we first got our new iMac we were able to send e-mail through Safari - somewhere in the last 2-3 years it stopped and we got the failure to deliver message. We then sent e-mails through Mail - it works well and we have gotten used to doing this. However, every once in a while I retry send e-mails through Safari and we still get the  failure to deliver notice. This has also happened when we try to forward some e-mails we receive (not all; most get forwarded).

  • HT1937 how to make iphone to iphone video call through sim card

    how to make iphone to iphone video call through sim card??

    use facetime to video call or any other app for that. you should have an cellular data connection or wifi to use this

  • How to make the Send To function from InfoView work for Email etc?

    Dear Colleagues,
    Which plugin is missing for sending by email? When I choose Send To > Email I get the following message:
    The destination plugin required for this action is disabled. If you require this functionality, please contact your system administrator.  The same goes for FTP Location and File Location as well.
    Hope someone can help!
    Regards Silje
    Edited by: Silje Mari Sunde on Aug 26, 2009 12:25 PM

    Hi,
    BO Administrator has to give access for you for sending a report to mail / other users. If you have admin access then goto CMC -> Servers ->  Click on Properties of Adaptive Job Server -> Click on Destination -> Add all your destination (Email,FTP etc.)
    -> enter Configuration details for email etc else send a mail to your admin if possible with screen shot for the access.
    Cheers,
    Suresh Aluri.
    Edited by: Suresh Babu Aluri on Aug 26, 2009 6:31 PM

  • While I'm asleep for the night my iphone sends weird emails to my contacts!?

    So while I am sleeping, my Iphone 4 is sending out emails from my account to my contacts. Each email I have never heard of before, not personal ones- more like spam. I always stayed logged in through my email app. Do I have a virus or something on my phone? HELP!?

    Need a bit more info to try and figure out the problem. What email are you using, and is it logged on from any other location? Such as a pc? Is it google active sync or microsoft exchange?
    If you're using active sync or exchange, keep in mind that it syncs all of your emails including outgoing emails. So if an email was sent from your pc or the web, it also gets stored on your phone as sent mail.
    To be safe, I would suggest you change your email password to make sure that no one else is logging into your account and sending emails as a joke.
    There aren't any known viruses for the iphone, or atleast none that I've heard of.

  • How can I to send an email with a longer than 50 characters subject?

    I'm trying to send an email through an abap program ( report ), but when the email arrives to the SOST transaction the subject is cut to 50 characters. How can I send an email with a longer than 50 characters subject?

    check this below code and do changes in ur report
    FORM SEND_MAIL_SUPPORT  TABLES   P_EM_BODY
                            USING    P_TITLE.
    *_ Start of the code to send an email notification
      DATA : ATTACH_REC TYPE I.
      DATA: OBJPACK LIKE SOPCKLSTI1 OCCURS 2 WITH HEADER LINE,
            OBJHEAD LIKE SOLISTI1 OCCURS 1 WITH HEADER LINE,
            OBJBIN LIKE SOLISTI1 OCCURS 10 WITH HEADER LINE,
            OBJTXT LIKE SOLISTI1 OCCURS 10 WITH HEADER LINE,
            DOC_CHNG LIKE SODOCCHGI1,
            TAB_LINES LIKE SY-TABIX.
    Creation of the document to be sent
      DOC_CHNG-OBJ_NAME = 'Mat Attach'(010).
      DOC_CHNG-OBJ_DESCR = P_TITLE.
      APPEND LINES OF P_EM_BODY TO OBJTXT.
      DESCRIBE TABLE OBJTXT LINES TAB_LINES.
      READ TABLE OBJTXT INDEX TAB_LINES.
      DOC_CHNG-DOC_SIZE = ( TAB_LINES - 1 ) * 255 + STRLEN( OBJTXT ).
    *Creation of the entry for the compressed document
      CLEAR OBJPACK-TRANSF_BIN.
      OBJPACK-HEAD_START = 1.
      OBJPACK-HEAD_NUM = 0.
      OBJPACK-BODY_START = 1.
      OBJPACK-BODY_NUM = TAB_LINES.
      OBJPACK-DOC_TYPE = 'RAW'.
      APPEND OBJPACK.
      DESCRIBE TABLE IT_ERROR LINES ATTACH_REC.
      IF ATTACH_REC GE '1'.
    *Start of email attachement of internal table conversition
       APPEND LINES OF IT_ERROR TO OBJBIN.
    WRITE: '----
    ' TO OBJBIN.
    APPEND OBJBIN.
    CLEAR OBJBIN.
    CONCATENATE 'CCode.' 'A/CDocNum.' '  FYear.' 'DType.' 'PDate.' '  RefField.' INTO
                 V_TEXT SEPARATED BY ' '.
    APPEND V_TEXT TO OBJBIN.
    CLEAR V_TEXT.
    WRITE: '----
    ' TO OBJBIN.
    APPEND OBJBIN.
    CLEAR OBJBIN.
    LOOP AT IT_ERROR.
    CONCATENATE IT_ERROR-BUKRS IT_ERROR-BELNR IT_ERROR-GJAHR IT_ERROR-BLART
                 IT_ERROR-BUDAT IT_ERROR-STATUS INTO V_TEXT SEPARATED BY '   '.
    APPEND V_TEXT TO OBJBIN.
    CLEAR V_TEXT.
    ENDLOOP.
    WRITE: '----
    ' TO OBJBIN.
    APPEND OBJBIN.
    CLEAR OBJBIN.
        DESCRIBE TABLE OBJBIN LINES OBJPACK-BODY_NUM.
        OBJPACK-TRANSF_BIN = 'X'.
        OBJPACK-HEAD_START = 1.
        OBJPACK-HEAD_NUM = 1.
        OBJPACK-BODY_START = 1.
        OBJPACK-DOC_SIZE = OBJPACK-BODY_NUM * 255.
        OBJPACK-DOC_TYPE = 'RAW'.
        OBJPACK-OBJ_DESCR = 'List of Error Documents'(012).  " Description
        APPEND OBJPACK. CLEAR OBJPACK.
      ENDIF.
      RECLIST-RECEIVER = S_EMAIL-LOW.
      RECLIST-REC_TYPE = 'U'.
      RECLIST-COPY = 'X'.
      APPEND RECLIST.
    Sending the document
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
        EXPORTING
          DOCUMENT_DATA              = DOC_CHNG
          PUT_IN_OUTBOX              = 'X'
          COMMIT_WORK                = 'X'
        TABLES
          PACKING_LIST               = OBJPACK
          OBJECT_HEADER              = OBJHEAD
          CONTENTS_BIN               = OBJBIN
          CONTENTS_TXT               = OBJTXT
          RECEIVERS                  = RECLIST
        EXCEPTIONS
          TOO_MANY_RECEIVERS         = 1
          DOCUMENT_NOT_SENT          = 2
          OPERATION_NO_AUTHORIZATION = 4
          OTHERS                     = 99.
    *CHECK SY-SUBRC = 0.
    ENDFORM.                    " SEND_MAIL_SUPPORT

  • How to make iPhone 4S Wi-Fi only

    Hello,
    I am going overseas to Iceland so I wanted to know how to make my iPhone Wi-Fi only so I won't get any extra charges on my bill.
    Thanks,
    Channing

    ssschmidt's instructions WILL NOT do what you want.

  • How to Make iPhone Ringtone From DVD Music/Music/Video?

    People want to show their individuality anytime and anywhere with their inimitable hairstyle, clothing, and other things. Your phone's ringtone is also really important to show your difference from others. So how to make your own unique ringtone for your incoming calls, clock alarms, clock timer becomes a really important thing.
    Today I will show you how to make your own iPhone ringtones from your DVD/video/music. Someone will say that you can buy them on itunes. Yes, everybody can buy it. It is not unique and special. Let's make our own iPhone ringtone together.
    Things you need:
    1. DVD/video/audio files that contains the music you want
    2.http://www.aiseesoft.com/iphone-ringtone-maker.htmliPhone Ringtone Maker
    3. Computer(Windows/Mac)
    http://farm3.static.flickr.com/2786/4153313698_c1e11d1941.jpg
    Step 1: Load File/DVD
    Load your video/audio files or DVD to this iPhone Ringtone Maker
    Step 2: Choose music
    You need to choose which part you want to convert as your iPhone ringtone or you want to make the whole files as your iPhone ringtone. Just drag the bar to set the begin point and end point
    Step 3: Pre-listening
    You can pre-listening the ringtone, if you do not like it you can adjust the length of your ringtone.
    Step 4: Make Ringtone
    After you have done all the tings above, you can click “Generate” button to start the conversion.
    Soon you will get your own ringtone.
    Tips:
    1. if you want to put your ringtone directly to your iPhone, please check the box before “import to iPhone”.
    2. if you want to manage your ringtone, you can click “manage ringtone” button to do it easily.
    For Mac users, you can use
    http://www.aiseesoft.com/iphone-ringtone-maker-for-mac.htmliPhone Ringtone Maker for Mac to do this easily with the same operation as windows one.
    http://farm3.static.flickr.com/2531/4153313838_7da8c360f3.jpg
    To help you to make your iPhone and iPod more enjoyable here I also recommend you this
    http://www.aiseesoft.com/dvd-to-ipod-converter.htmlDVD to iPod Converter,
    http://www.aiseesoft.com/dvd-to-iphone-converter.htmlDVD to iPhone Converter and http://www.aiseesoft.com/ipod-transfer.htmliPod Transfer

    Removed post. Banned user due to spamming.

  • How to Make iPhone Ringtone From DVD Music/Music/V...

    People want to show their individuality anytime and anywhere with their inimitable hairstyle, clothing, and other things. Your phone's ringtone is also really important to show your difference from others. So how to make your own unique ringtone for your incoming calls, clock alarms, clock timer becomes a really important thing.
    Today I will show you how to make your own iPhone ringtones from your DVD/video/music. Someone will say that you can buy them on itunes. Yes, everybody can buy it. It is not unique and special. Let's make our own iPhone ringtone together.
    Things you need:
    1. DVD/video/audio files that contains the music you want
    2.iPhone Ringtone Maker
    3. Computer(Windows/Mac)
    Step 1: Load File/DVD
    Load your video/audio files or DVD to this iPhone Ringtone Maker
    Step 2: Choose music
    You need to choose which part you want to convert as your iPhone ringtone or you want to make the whole files as your iPhone ringtone. Just drag the bar to set the begin point and end point
    Step 3: Pre-listening
    You can pre-listening the ringtone, if you do not like it you can adjust the length of your ringtone.
    Step 4: Make Ringtone
    After you have done all the tings above, you can click “Generate” button to start the conversion.
    Soon you will get your own ringtone.
    Tips:
    1. if you want to put your ringtone directly to your iPhone, please check the box before “import to iPhone”.
    2. if you want to manage your ringtone, you can click “manage ringtone” button to do it easily.
    For Mac users, you can use
    iPhone Ringtone Maker for Mac to do this easily with the same operation as windows one.
    To help you to make your iPhone and iPod more enjoyable here I also recommend you this
    DVD to iPod Converter,
    DVD to iPhone Converter and iPod Transfer

    Removed post. Banned user due to spamming.

  • How do I automatically send an email if the state of an LED is high?

    I've recently just got a NI MyDaq and have started using Labview. I've made a simple program that sounds an alarm if the noise level is above a certain level or if one of the switches has been activated but I now am not able to figure out how to send an email msg if the alarm has been triggered. Please help, thank you.   

    Here's a VI that will probably help you out:
    http://zone.ni.com/reference/en-XX/help/371361H-01/lvcomm/email_vis/SMTP Send
    Cheers Marc

  • Hows this sound? Send an email that contains HTML button to update DB?

    My thought is to send an email containing a link that when clicked it calls a page with several items and their values and the page has no authorization or authentication to update a record in the DB.
    Can I send a session id or key to secure it as good as possible?
    Thanks, Bill

    We do this to confirm the email address a user has entered in a registration form. We write a unique code created with SYS_GUID() to a field in the USERS table, then send an email to the user containing a link that includes that code. When they click on the link, they are confirmed as registered and the activation code is deleted so that the link can't be used again.

  • How to change the sender's email address

    Basically, is there a way of changing the sender's address when using the hub to send emails from Gmail?
    I have the following domain / email registered with Enom: {REMOVED}. But, when I signed up to Gmail I had to use one of their email addresses: {REMOVED}. This is now my login name into Gmail.
    But I don't want people to see {REMOVED} whenever I send an email.
    Whilst using Gmail, I use the feature "Check email from other accounts" and here I have entered "{REMOVED}". What happens is that, whenever anyone sends an email to {REMOVED}, Gmail intercepts it and they show up within Gmail. 
    Also, in Gmail's accounts section, I tell it to "Send mail as" to {REMOVED}. So, when I send an email, it says that it has come from {REMOVED}. That's great.
    However, when I send an email using Blackberry's Hub from Gmail, it says that it has come from {REMOVED}. Is there any way of altering this?
    I have downloaded the Gmail app, and does what I want. But I would rather use the hub to send emails. So is there any way to change the sender's address?
    Thanks.
    Mod Edit: Removed personal information to comply with Community Guidelines and Terms and Conditions of Use.

    Hello thirtynine,
    When sending email via Gmail from your BlackBerry 10 smartphone, the primary address will always appear on the sent message. This cannot be edited to appear as another address.
    Thank you.
    -FB
    Come follow your BlackBerry Technical Team on Twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.
    Click "Accept as a Solution" for posts that have solved your issue(s)!

  • How do i automatically send an email each monday

    I just want to automatically send an email to our local buysellswop every Monday morning same mail each week

    How is that related to Firefox support?

Maybe you are looking for

  • How do I make it so when I launch Safari it will OPEN on my home page.

    I know how to "set" my home page but in "Safari / Preferences / Apple opens with" the ONLY options are: "A new window" or "All windows from last session" How can I make it my "Home Page"? In addition, when Im using Safari and I press Command+N to ope

  • ITunes forgets media folder is on external hard drive

    Hi I have recently started using a Time Capsule with an external hard drive attached. I have moved my music and video to the external hard drive to free up space on my MacBook Pro hard drive. I have set up iTunes to play from the external hard drive

  • Will ipod touch4 mains charger work with ipod touch5

    I purchased an iPod touch 5 for my little one , I have an iPod touch 4 , can I use the mains wall charger to charge the touch5 with the new lead , or is the only way to charge it through the USB on my laptop

  • Application Object in Controllers

    Hi to all, In MVC based BSP application how to access application class in controller and models? I had seen application attributes in controller class. Suggest me how to use data binding using example, if there. Regards,

  • A sql query

    hi i hve a data like this ID jobNo ownerofjob startdate 1 99 kiran 8-02-07 2 99 dondapati 09-03-07 3 99 sunil 12-03-07 4 1000 ask 14-03-07 i want result as 99,sunil and date 8-02-07(when the job started) by case with select clause