Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Downloads
Search: 

A wrapper class for SMTP
Denny Jacob
This is a class to send emails with minimum effort while allowing for multiple To, Cc, Bcc and Attachments. You will need to also modify your web.config to work with your SMTP provider i.e. the settings you would use on your Outlook Account settings.
Created on
17 years ago
Downloads
1143
File type
Freeware
Rating
4.00/5.00
General information
Rating:
4.00/5.00 (1 rate) Rate this item
Description
This is a class to send emails with minimum effort while allowing for multiple To, Cc, Bcc and Attachments:

    Usage:
    --------------
            With New Framework_Code.Email
                .eMail_From("you@aol.com")
                .eMail_TO("recipient@yahoo.com")
                .eMail_SEND()
            End With

    Important PEMs:
    ---------------
    eMail_From(email,[Display Name])*
    eMail_To(email,[Display Name])*
    eMail_Cc(email,[Display Name])
    eMail_Bcc(email,[Display Name])
    eMail_ReplyTo(email,[Display Name])
    eMail_Sender(email,[Display Name]) 'Shows this emailID as 'on behalf of' the emailID for eMail_From 
    eMail_Subject(text)
    eMail_Body(text, [IsBodyHtml(True)])
        If you want your email body to have HTML tags then remember to add validateRequest=false at Page directive.
    eMail_Attachment(filename, [Display Name])
    eMail_Attachment(fileUpload Control)
    eMail_Send()*: returns True or False depending on whether or not the Send was successful

    * Required for sending emails successfully
Created by
Denny Jacob
UT brotherhood is a great place to turn to when you are in dire need of a programming clue. It is been my experience that at least 3 people respond to each problem I post. "Downloads" has a wealth of great VCXs and ideas to equip a good VFP programmer for better. God bless UT.

Comments
VB. Hernan Cano, August 17, 2012

Add a comment
More downloads created from this member
Denny Jacob
A helper class for transaction enabled data write. It can be used as is, on backend databases which support transactions e.g. SQL server, Oracle and yes Access too. ...
Created on
12 years ago
Downloads
1023
File type
Freeware