Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Fichiers
Recherche: 

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.
Créé le
Il y a 17 années
Téléchargements
1143
Type de fichier
Freeware
Résultat de votes
4.00/5.00
General information
Résultat de votes:
4.00/5.00 (1 rate) Évaluer cet 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
Créé par
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.

Commentaires
VB. Hernan Cano, August 17, 2012

Ajouter un commentaire
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. ...
Créé le
Il y a 12 années
Téléchargements
1023
Type de fichier
Freeware