Identifying whether an email system supports html or not

Hi,
I was wondering whether you guys had any information on how to find out whether an email system(example: aol,hotmail,yahoo, etc) supports html based email messages. I am trying to develop a system which identifies whether a email server supports html or text messages and based on the outcome i need to send the text based or html based newsletter.
Thanks in advance --- Kumar

Think about it. If I want to read my e-mail, I start my e-mail client. It runs on my computer. When I'm finished reading it, I terminate it. So it's active for maybe 1 hour a day.
Now there you are, somewhere in cyberspace. How can you tell what e-mail client I am using? First, you can't get to my computer because I have a firewall to keep out the scum that inhabits the Internet. Or I'm in a LAN with 300 other computers and you don't know which is mine. Next, if you could, my e-mail client probably isn't running. And maybe I use a different client to check my mail from home on the weekends.
Like I said before, just ask your customers whether they want HTML e-mails.

Similar Messages

  • How to identify whether a multiline container is empty or not in Workflow?

    Hi Experts,
    Does any1 know how to identify whether a multiline container
    is empty or not in a workflow?
    Thanks.
    Points wil be rewarded.
    Vincent

    Dear Vincent,
    You can get the report name for the Business Object which contains the multi-line container, from the BO itself. Put a break-point in the report and try executing the workflow. The multiline container is like an internal table in the report. See if the internal table is initial while execution.
    Regards,
    Michael.

  • How to identify, whether your iphone is permanently unlocked or not?

    How to identify, whether your iphone is permanently unlocked or not?

    gautam30 wrote:
    How to confirm?
    Did you not read wjosten's reply?

  • How to identify whether Technical Content is been installed or not?

    Hi all,
    Can anyone let me know how to identify whether technical content in BW 3.5 is been installed or not?
    thanxs
    haritha

    Hi Haritha,
    Check this PDF,
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/90080703-4331-2a10-cd98-9c1e95acdea0
    And this link also,
    http://help.sap.com/saphelp_nw04/helpdata/en/e5/2d1e3bd129be04e10000000a114084/frameset.htm
    Hope this clears your doubt...

  • How to findout whether the mail server supports STARTTLS or not?

    Hi,
    In my application I want to use explict SSL over SMTP, IMAP and POP3 by using the property "mail.<protocol>.starttls.enable"
    . I did see the documentation for mail.<protocol>.starttls.enable property as
    "If true, enables the use of the <code>STARTTLS</code> command (if
    supported by the server) to switch the connection to a TLS-protected
    connection before issuing any login commands".
    How do I findout whether the server supports STARTTLS or not?
    What will be the outcome if I use the property "mail.<protocol>.starttls.enable" though the server doe's not support STARTTLS? plain text connection will be there or will it throw any exception?
    Thanks in advance!
    PrasadKT

    The "mail.<protocol>.starttls.enable" property will use STARTTLS if the server
    supports it, and won't if it doesn't. Not using it might cause later commands to fail.
    Newer versions of JavaMail also have a "mail.<protocol>.starttls.required"
    property that will cause the connection to fail if the server doesn't support
    STARTTLS.

  • Why systems support inventory account, not purchase account ?

    Dear Sir,
    Kindly explain the LOGIC behind system supporting stock account instead of purchase account.
    Thanks in anticipation
    Regards
    Chirag Shah
    +91 98202 72322

    Hi:
          Please adhere to forum rules of engagement ..Do not write cell phone number in your post or private information. Coming to your query please note that SAP provides 3 way processing to goods procured through MM....
    This is done based on GR based invoice verification concepts. Upon purchase of goods impacts are generated in FI at the time of MIGO ..Stock Dr and GRIR clearing A/C Cr...Here stock account is debited. Purchase account can be used provided purchase based accounting is active in your system. In 2nd step MIRO or invoicing is done which clears the GRIR Account  by debiting it and Generating liability for vendor by crediting it. Lastly you pay off your liability manually or through APP.
    Regards

  • How to check whether a SMTP server is supporting Authentication or not

    Hi All,
    We are using Java Mail API 1.3.1/1.3.2 to send the messages. some of the SMTP servers that we use are supporting authentication and some of them are not.
    As the SMTPTransport.supportsAuthentication() is not available only in Java mail API 1.4.1, we are identifying the SMTP server whether it is supporting authentication or not in the following way.
    Socket clientSocket = null;
    InetSocketAddress socketAddress = null;
    OutputStream outStream = null;
    InputStream inStream = null;
    InputStreamReader inReader = null;
    OutputStreamWriter outWritter = null;
    try
    clientSocket = new Socket();
    socketAddress = new InetSocketAddress(host, port);
    clientSocket.connect(socketAddress, timeout*1000); // convert timeout from second to miliseconds
    // 1: now try to execute the given command by passing that on Out-Socket
    outStream = clientSocket.getOutputStream();
    outWritter = new OutputStreamWriter(outStream);
    outWritter.write("ehlo localhost" +"\n");
    outWritter.flush();
    // 2:Read output of above command
    inStream = clientSocket.getInputStream();
    inReader = new InputStreamReader(inStream);
    // This array limit would be fine to get "AUTH" extension of smtp server.
    char[] arr = new char[16384];
    StringBuilder strBuilder = new StringBuilder();
    inReader.read(arr);
    for(int i=0; i< arr.length; i++)
    strBuilder.append(arr);
    System.out.println(METHOD_NAME + "SMTP server response for ehlo localhost command ->"+strBuilder.toString());
    // The output EHLO command comes like below :
    // ehlo localhost
    // 250-ap9058pc.us.oracle.com Hello ap614ses.us.oracle.com [130.35.33.43], pleased to meet you
    // 250-ENHANCEDSTATUSCODES
    // 250-PIPELINING
    // 250-8BITMIME
    // 250-SIZE
    // 250-DSN
    // 250-ETRN
    // 250-AUTH GSSAPI DIGEST-MD5 CRAM-MD5 LOGIN PLAIN
    // Since for XATUH ( like internal IP),
    // we are not sure, so just checking for AUTH capability.
    supported = strBuilder.indexOf("250-AUTH") >=0? true : false;
    As shown in above code, we are issuing 'ehlo localhost' command to SMTP server, if the response i. 'strBuilder' contains '250-AUTH' then we are assuming that it is supporting authentication.
    But for one SMTP server the 'strBuilder' value is showing as '220 mail.durofelguera.com ESMTP Service (Lotus Domino Release 8.5.2) ready at Thu, 16 Feb 2012 13:57:20 +0100' only which is socket connection output but not 'ehlo localhost' command output.
    where as the telnet test output is showing correct only as below
    # telnet mail.durofelguera.com 25
    Trying 172.20.16.65...
    Connected to mail.durofelguera.com.
    Escape character is '^]'.
    220 mail.durofelguera.com ESMTP Service (Lotus Domino Release 8.5.2) ready
    at 0
    ehlo localhost
    250-mail.durofelguera.com Hello localhost ([172.20.15.209]), pleased to meet
    yu
    250-HELP
    250-AUTH LOGIN
    250-SIZE
    250 PIPELINING
    AUTH LOGIN
    The question is why the 'strBuilder' is not showing 'ehlo localhost' conad output where as the telnet test results are showing correctly, what is going wrong here?
    Is there any other way to check that whether SMTP server is supporting authentication or not?
    Edited by: sarojak on Feb 19, 2012 10:11 PM

    There are so many things wrong with your code, it's hard to know where to start...
    Basically, the problem is not as simple as you think it is.
    For example, some servers might not allow authentication until you've issued
    the STARTTLS command.
    These days, essentially all servers allow authentication. You're probably better
    off just assuming the server supports.

  • Bogus email fromServiceApple Support@supporteapple.eu

    This email came to me this morning stating "my account apple need update"….also said "automatic message from our system gets to inform you that it’s necessary to have the records of your account updated within two days".  I just wanted to make sure that this is bogus and can it be reported to apple?
    thanks...

    Fran,
    It is a bogus message.
    Read Identifying fraudulent "phishing" email - Apple Support. It will help you identify and report fraudulent email.

  • Sending emails with HTML or not?

    I am developing an application which will send 1000's of emails and I'm debating on whether or not to send html in the email. I have two questions:
    1. Do most email clients support html? Most of the recipients of the emails will be AOL, hotmail/msn, or yahoo clients. Are there any stats on how many people are running clients that don't support html?
    2. The emails I send require an embedded image. Can I send an email with an image and it not be a html email? If so, how? A multipart email? If anybody has an example that would be great!
    I'd prefer to not use HTML if possible.
    Thanks,
    JEB

    Here is a simplified version of the code. I've left out simple variable declarations, methods, and try-catch blocks but they are obivious...
            // AQUIRE THE JAVAMAIL SESSION OBJECT
            Properties props = new Properties();
            props.put("mail.smtp.host", smtpHost);
            Session session = Session.getInstance(props, null);
            // PREPARE THE MULTIPART MESSAGE
            Message message = new MimeMessage(session);
            message.setFrom(new InternetAddress(from, personal));
            if (bcc != null)
                message.setRecipient(Message.RecipientType.BCC, new InternetAddress(bcc));
            message.setSubject(subject);
            MimeMultipart multipart = new MimeMultipart("alternative");
            BodyPart bodyPartText = new MimeBodyPart();
            BodyPart bodyPartHtml = new MimeBodyPart();
            BodyPart bodyPartImage = new MimeBodyPart();
            bodyPartImage.setDisposition(Part.INLINE);
            FileDataSource fds = new FileDataSource(photo);
            bodyPartImage.setFileName(fds.getName());
            bodyPartImage.setDataHandler(new DataHandler(fds));
            bodyPartImage.setHeader("Content-ID", "23abc@pc27");
            message.setRecipient(Message.RecipientType.TO, new InternetAddress(to));
            // THESE METHODS JUST RETURN TEXT OR HTML, RESPECTIVELY
            String htmlContent = createHtmlContent();
            String textContent = createTextContent();
            // SEND A HTML AND TEXT ALTERNATIVE EMAIL FOR THOSE WHO DON'T SUPPORT HTML
            bodyPartText.setContent(textContent, "text/plain");
            bodyPartHtml.setContent(htmlContent, "text/html");
            multipart.addBodyPart(bodyPartHtml ,0);
            multipart.addBodyPart(bodyPartImage, 1);
            multipart.addBodyPart(bodyPartText, 2);
            message.setContent(multipart);
            // SEND THE MAIL MESSAGE
            Transport.send(message);Hope this helps,
    JEB

  • ICloud enable, apple laptop not set up but icloud email system "ON", how to track when it stolen?

    I recently gotten my laptop bag stolen w/ my macbook pro and other papers stolen. I have iCloud on set up in email system but I had not checked to allow," Find my Mac" option. I really need help to get this problem solve. Please can anybody help me solve this?

    Welcome to the Apple Community.
    You can only locate your device when it is logged into iCloud and 'Find My Phone' is enabled, additionally the device will need to be switched on and connected to a wifi or cellular network.
    Unfortunately, you cannot activate iCloud or 'Find My Phone' remotely.

  • What is itibiti.exe doing on my Mozilla Thunderbird email system?

    Itibiti.exe has attached itself to my thunderbird email system. I did not authorize and I want to remove itibiti.exe . It is NOT a program in my computer system

    This file is malware and it has nothing to do with Thunderbird. If you do a Google search there are sites that tell you how to remove it.

  • Why am I getting frequent spam emails via iPad that are not coming through my primary email account?  And how do I get them to stop?

    Why am I getting frequent spam emails via iPad that are not coming through my primary email account?  And how do I get them to stop? 

    Hi D.,
    Unfortunately phishing is far too common these days. The articles below will help you determine the authenticity of the emails that you received.
    Identifying fraudulent "phishing" email
    http://support.apple.com/kb/ht4933
    Identifying legitimate emails from the iTunes Store
    http://support.apple.com/kb/ht2075
    -Jason

  • I keep receiving verification emails from apple that are not from me

    Hi, I've received more than 20 emails from [email protected] in the same day to verify my email address, the messages are in French, and according to google translate:
    "Dear (Not me),
    You entered (my Gmail address missing the dots) as contact email address for your Apple ID. To complete the process, we need to verify that it is your email address. Just click the link below and log in using your Apple ID and password.
    Should I be worried? Did someone access my account? I changed my password but received the same email later.
    The last email was different, it say, according to google translate:
    "Find My iPhone was disabled in iPhone (Not me but same as above)..."

    Hey there Mr.224,
    It sounds like you are getting emails from a sender that appears to be Apple, but with information that clearly is not yours. I recommend a couple of things here. First log into your account at http://appleid.apple.com, and see if the email address from the message you got is listed in your Alternate Email address. If so, and you do not want it there, delete the email address.
    If it is not there, then take a look at this article with informatin about identifying Phishing emails:
    Identifying fraudulent "phishing" email
    http://support.apple.com/kb/ht4933
    If you have additional concerns about your account security you may want to consider Two Step Verification:
    Apple ID: Frequently asked questions about two-step verification for Apple ID
    http://support.apple.com/kb/ht5570
    If you have any additional account security issues, you can contact our Account Security team for assistance. Note you will need to verify your account info.
    Apple ID: Contacting Apple for help with Apple ID account security
    http://support.apple.com/kb/HT5699
    Thank you for using Apple Support Communities.
    Cheers,
    Sterling

  • On my SmarterMail email system, every time I hit "reply" to draft a response to a message, Firefox has begun displaying a mass of HTML data from the original message, making it impossible to use, rather than just the simple text as previously.

    I've been using this web-based email system for many years. Up until last week, every time I wanted to reply to a message, I simply clicked reply, and got a new message draft, with all the previous exchanges neatly tacked on the bottom in reverse chronological order. Now what happens is that I get a mass of HTML gobbledygook, which makes it very difficult to make out what the previous message said. This only affects the "view"ing of the new draft as when I send it, it comes out clean to the recipient. And it only affects my main desktop computer. (Windows XP).

    Hi,
    I have my Contact Testers page which has this HTML
    (opening tag here) a href="aim:goim?screenname=ralphjohnsr&message= Hi+!,+I+came+from+your+website,+ralphjohnsuk." (closing tag here) (opening tag here) img align="right" alt="Webmaster iChat Online Status Indicator" border="0" src="http://big.oscar.aol.com/ralphjohnsr?on_url=http://www.ralphjohns.co.uk//images/ RalphOn.gif& off_url=http://www.ralphjohns.co.uk//images/RalphOff.gif" /(closing tag here)(oen tag)/a(close tag) 
    I have added some linebreaks to make it fit the page here.
    This is obviously done using a valid AIM login name and the a href ="aim:goim? will launch an AIM Client and Message me.
    As you say you would create a New Apple ID then this would be iCloud and an AIM valid Name (keeping the Password to 16 characters or less).
    I am not aware of an iMessage equivalent that would do this to a Phone or iPad or to the Messages Beta as an iMessage.
    To be clear.
    What this HTML does is launch an AIM client (App) on the computer or the person viewing my page and then start a chat with the IM included in the HTML.
    To do that it queries the AIM servers as to whether I am On line or Line and show a pic relevant to that status.  (it does not stop Off Line IMs but I am set up for that.  It also does not say if I am Available or Away.)
    Edit to get html to show (not sure how to work this Raw code thing which dispalyed in the Reply wysiwyg screen.
    8:29 PM      Saturday; March 31, 2012
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
      iMac 2.5Ghz 5i 2011 (Lion 10.7.3)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously
    Message was edited by: Ralph Johns (UK)
    Message was edited by: Ralph Johns (UK)

  • I have one account, but use it as two for years.  One is home, one is work.  Recently we upgraded to Windows 7 at work and a new email system.  Now I can't download music at work; work tech support can't help but said to use my work email address. Failure

    I have one account, but use it as two for years.  One is home, one is work.  Recently we upgraded to Windows 7 at work and a new email system.  Now I can't download music at work; work tech support can't help but said to use my work email address. Failure.
    Could it be a new work firewall associated with the upgrades?  How can I resolve this?

    I have one account, but use it as two for years.  One is home, one is work.  Recently we upgraded to Windows 7 at work and a new email system.  Now I can't download music at work; work tech support can't help but said to use my work email address. Failure.
    Could it be a new work firewall associated with the upgrades?  How can I resolve this?

Maybe you are looking for

  • IPad 3, Vzw data plan

    Ordered a new IPad with the Vzw plan.  Apple lists it as having the 1 gig for $20 option.  Vzw no longer lists that plan as an offering.  Will the Apple order be considered as a grandfathered in offer?  Or will I have to exchange for one with the AT&

  • P7-1258 no audio dvi-d output?

    ive tried every idt hd audio driver.dont think the sound comes through it any way i have a hdmi adapter hooked in to dvid output hooked in to my tv and can get no sound have also tried every amd radeon driver as well does dvi-d sopport audio?i also h

  • Extensions for MediaWiki

    I've installed MediaWiki on my server and found myself in need of a few of the extensions listed on the MediaWiki website. Now, seeing how I was able to use pacman to install it (as it was conveniently available in the community repository) it seemed

  • After downloading os5.0 ,none of my contacts reloaded from the backup. Any idea's how to get them back.

    After downloading OS 5.0, none of my contacts reloaded from the backup. Any idea how to get them back?

  • Where's the SATA Driver for 64-bit???

    Hi there, i have a MSI Board for dual Opteron, and also got the new Windows XP 64 bit (Opteron edition) to try, but the problem gets big is were the hell im gonna put SATA drivers during the windows installation, where there is no 64 bit driver. Im v