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=-0.9 required=5.0 tests=BAYES_00,FORGED_GMAIL_RCVD, FREEMAIL_FROM autolearn=no autolearn_force=no version=3.4.4 Path: eternal-september.org!reader01.eternal-september.org!reader02.eternal-september.org!news.eternal-september.org!mx02.eternal-september.org!.POSTED!not-for-mail From: =?UTF-8?B?QmrDtnJuIEx1bmRpbg==?= Newsgroups: comp.lang.ada Subject: Re: Email from and Ada program Date: Fri, 15 May 2015 23:21:48 +0200 Organization: A noiseless patient Spider Message-ID: References: <55565fac$0$285$14726298@news.sunsite.dk> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Injection-Date: Fri, 15 May 2015 21:20:02 +0000 (UTC) Injection-Info: mx02.eternal-september.org; posting-host="837c8741ab2958f631a31f1d42004930"; logging-data="13101"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX19w71UGcRRhTz79IFSTdfgy" User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Icedove/31.4.0 In-Reply-To: <55565fac$0$285$14726298@news.sunsite.dk> Cancel-Lock: sha1:P3DRWC/PRxl4DhtPZwEXB4D95wI= Xref: news.eternal-september.org comp.lang.ada:25889 Date: 2015-05-15T23:21:48+02:00 List-Id: On 2015-05-15 23:05, Poul-Erik Andreasen wrote: > Hej > > I am looking for a package to sending Email notifications from within a > Ada program. It is pretty darn difficult to search fore, since "email" > are in every other website and Ada also have some doublets. I can > of course go bye a command line but that is not that elegant, and makes > dependencies, so I will be happy for a hint > look at aws. it has an smtp package. use as SMTP.Client.Send(Server => SMTP_Server, From => SMTP.E_Mail ("sender name",sender-email), To => Receivers, Subject => Subject, Message => Msg, Status => Status); -- -- Björn