⇤ ← Revision 1 as of 2009-06-16 12:57:30
Size: 1055
Comment:
|
Size: 1331
Comment: Added link to Java example
|
Deletions are marked like this. | Additions are marked like this. |
Line 16: | Line 16: |
* [[AuthenticatedEmailJava|Sending authenticated e-mail using APLX and Java]] This page shows an example of using Java from APLX to send e-mails to an SMTP server which requires authentication. Unlike the .NET examples, it can also be used on Macintosh OS X and Linux |
Sending and Receiving E-mail
Here are some useful Wiki pages if you're trying to write APL code to handle e-mails:
Sending e-mail using Dyalog and .NET
- This page shows an example of how to use the .NET System.Web.Mail namespace to send e-mails.
Note that this .NET namespace is now deprecated by Microsoft in favour of System.Mail. There is an example of using System.Mail from APLX here which can be easily adapted to Dyalog.
- This page shows an example of how to use the .NET System.Web.Mail namespace to send e-mails.
Sending and receiving e-mail using APLX built-in classes
- APLX has built-in classes for sending and receiving e-mail. These work on Windows, Mac and Linux but do not currently support authentication.
Sending authenticated e-mail using APLX and .NET
- This page shows an example of using the .NET System.Mail namespace from APLX to send e-mails to an SMTP server which requires authentication.
Sending authenticated e-mail using APLX and Java
- This page shows an example of using Java from APLX to send e-mails to an SMTP server which requires authentication. Unlike the .NET examples, it can also be used on Macintosh OS X and Linux
Author: SimonMarsden
CategoryDyalogExamplesDotNet CategoryAplx CategoryDotNet CategoryEmail