html
Send email via MSN email account
MSN SMTP server requires SSL connection on port 25.
Sample code below uses CDO 2000 class for sending emails
Send email via Yahoo mail account
Yahoo SMTP server requires SSL connection on port 465.
Sample code below uses CDO 2000 class for sending emails
Retrieve HTML from Clipboard
MSDN:
| This is sample code. Add error handling and adjust to your requirements as necessary. |
lcHtml = HtmlFromClipboard() IF NOT ISNULL(lcHtml) lnStartHTML = VAL(STREXTRACT(lcHtml, "StartHTML:", "")) lnEndHTML = VAL(STREXTRACT(lcHtml, "EndHTML:", "")) * If StartFragment is present, retrieve HTML fragment IF ("StartFragment" $ lcHtml)
Send email via Gmail account
Gmail SMTP server requires SSL connection on port 465.
Known Gmail limits on sending emails:
- An attachment size is limited to 25 MB
- An individual email can be sent to maximum of 100 recipients
- A large number of undeliverable messages could trigger an account lockdown
Exceeding any limits beside the attachment size will cause Gmail account to be locked down for 24-72 hours.
CDO 2000 class for sending emails
The CDO2000 class allows to send emails w/o user intervention using a SMTP server.
An example on how to use the class can be found at CDO 2000 class for sending emails.
Note 1 CDO 2000 is included in Windows 2000 and later.
Note 2 A character set of any body part is controlled by Charset property. The default is "us-ascii".
Loading XML into a WEB Browser Control from Variable
The code below uses default Internet Explorer XSLT to convert XML into HTML.
Recent comments
1 week 2 days ago
1 week 2 days ago
1 week 3 days ago
1 week 5 days ago
1 week 5 days ago
2 weeks 2 days ago
3 weeks 2 days ago
3 weeks 3 days ago
3 weeks 4 days ago
4 weeks 1 day ago