From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,FREEMAIL_FROM autolearn=unavailable autolearn_force=no version=3.4.4 X-Received: by 10.182.33.102 with SMTP id q6mr10568838obi.11.1453609473273; Sat, 23 Jan 2016 20:24:33 -0800 (PST) X-Received: by 10.182.227.200 with SMTP id sc8mr149424obc.0.1453609473249; Sat, 23 Jan 2016 20:24:33 -0800 (PST) Path: eternal-september.org!reader01.eternal-september.org!reader02.eternal-september.org!news.eternal-september.org!mx02.eternal-september.org!feeder.eternal-september.org!news.glorb.com!h5no8554013igh.0!news-out.google.com!kr2ni7460igb.0!nntp.google.com!o2no5639557iga.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Sat, 23 Jan 2016 20:24:33 -0800 (PST) Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=2601:18f:900:8350:ba86:87ff:fed6:5907; posting-account=AvekzAoAAABj-TclKcOWQmXwA49MFPGX NNTP-Posting-Host: 2601:18f:900:8350:ba86:87ff:fed6:5907 User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: <7b8c5605-a4b5-4c0a-ae52-399b34b1be9e@googlegroups.com> Subject: Sending HTML e-mails From: John Smith Injection-Date: Sun, 24 Jan 2016 04:24:33 +0000 Content-Type: text/plain; charset=ISO-8859-1 Xref: news.eternal-september.org comp.lang.ada:29213 Date: 2016-01-23T20:24:33-08:00 List-Id: Hi, One thing that I'd like to do in Ada is to send an HTML file and have that display as the actual e-mail itself (for example, in Outlook.) Basically, not as an attachment to the e-mail, but inside the message of it. Here are the steps that I took and the results that I got: - The first thing I did was have a look at this example: http://rosettacode.org/wiki/Send_email#Ada Where it says message, I entered HTML and my e-mail never got to my Outlook Inbox. The plain text worked though. - Then, I tried turning HTML code into (which is in a plain HTML file) an attachment and then sending that out. Well, this e-mail did get to where it was supposed to get to, but it had an attachment that was an HTML file. I tried something similar in a different programming language and it worked as I've previously described. So, I have this question. How can I create a plain table in HTML and then send it out?