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.50.142.103 with SMTP id rv7mr8687853igb.4.1453849744839; Tue, 26 Jan 2016 15:09:04 -0800 (PST) X-Received: by 10.182.166.97 with SMTP id zf1mr325129obb.18.1453849744814; Tue, 26 Jan 2016 15:09:04 -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!o2no6523966iga.0!news-out.google.com!kr2ni10984igb.0!nntp.google.com!h5no9863140igh.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Tue, 26 Jan 2016 15:09:04 -0800 (PST) In-Reply-To: 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 References: <7f2111a7-a789-42c9-829b-08c2661410bd@googlegroups.com> User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: Subject: Re: Sending HTML e-mail From: John Smith Injection-Date: Tue, 26 Jan 2016 23:09:04 +0000 Content-Type: text/plain; charset=ISO-8859-1 Xref: news.eternal-september.org comp.lang.ada:29250 Date: 2016-01-26T15:09:04-08:00 List-Id: On Monday, January 25, 2016 at 8:09:57 PM UTC-5, Randy Brukardt wrote: > "Dennis Lee Bieber" wrote in message > news:a7t9abpg2p6ghs65f6agsase7cltp9ad8e@4ax.com... > > On Sat, 23 Jan 2016 20:25:04 -0800 (PST), John Smith > > declaimed the following: > ... > >>So, I have this question. How can I create a plain table in HTML and then > >>send it out? > > > > 1) You will likely have to have the entire body of the message as HTML > > -- not just something contained within it. (Unless you actually go to the > > extent of using multipart/mixed or some such, in which you embed multiple > > forms of the message: text/plain, text/html, etc. and let the reading > > client pick the one it can best handle) > > And you really ought to do that; not all mail clients can do anything useful > with HTML. > > Randy. Hi, thanks for your response. I don't mind building the actual String in HTML from scratch, that's easy. The question that I have is, once I have that built exactly how I want it, how can I send it and have it be delivered as an HTML e-mail? I thought about using AWS.Response.Build for this, it returns a Data object... but I'm not sure how to e-mail it... I'm confident that I'm missing something that is relatively self-evident, but not quite making the connection necessary to make it work. If someone could show me a very simple example (it doesn't even need to be compilable), that would be very helpful.