de Fath Software - Tipo de producto: Componente / DLL
Send and receive email messages from your application. FathMail lets you enumerate mail while still on a server and delete spam. You can also add attachments, embed pictures, use plain text or HTML. FathMail supports secure SSL communication for SMTP, IMAP4 and POP3 mail protocols. FathMail is an ATL/COM component you can use with : Visual Basic, MS Access, MS Visual C++, ASP, VB.NET, C#.NET, Windows scripting, etc. Use this lightweight component in your application, scripts or even ASP pages to easily and reliably send/retrieve e-mail messages using SMTP/POP3 protocols.
Nuestros precios Standard están indicados abajo. Inicia una sesión para ver sus precios con descuento.
| Añadir a la Cesta | $ 48.02 | 1 Developer License * | Descarga (885 KB) | |
| Añadir a la Cesta | $ 33.61 | 2-5 Developer License - price per license * | Descarga (885 KB) | |
| Añadir a la Cesta | $ 28.81 | 6-10 Developer License - price per license * | Descarga (885 KB) | |
| Añadir a la Cesta | $ 24.01 | 11 and above Licenses - price per license * | Descarga (885 KB) |
Nuestros precios incluyen servicio técnico de ComponentSource y, para la mayoría de los productos disponibles para descarga, una copia de seguridad en línea y una actualización GRATUITA a la nueva versión si ésta se publica en un período de 30 días después de la compra. Todas las ventas están sujetas a nuestros Términos y condiciones standard y a nuestra Política de devolución. Por favor, póngase en contacto con nosotros si necesita alguna opción de licencia no ofrecida en la lista, como por ejemplo volumen de licencias y versiones anteriores.
Nuestros precios Standard están indicados arriba. Inicia una sesión para ver sus precios con descuento.
FathMail Features include:
Compose a new message
Dim oMsg as FathMail.Message
Set oMsg= New FathMail.Message
oMsg.Sender = "myaddress@domain.com"
oMsg.Recipient = "hisaddress@domain.com"
oMsg.Subject = "test message"
oMsg.Text = "Hi, this is a message."
oMsg.TextHTML = "Hi, this is a HTML message."
oMsg.AddAttachment "mypicture.jpg"
Send message using SMTP
Dim oSMTP as FathMail.SMTP
Set oSMTP = New FathMail.SMTP
oSMTP.ServerAddr = "mail.domain.com"
oSMTP.Send oMsg
The mail server address can be retrieved through DNS MX record with SMTP GetMX method:
oSMTP.ServerAddr = oSMTP.GetMX ( "hisaddress@domain.com" )
Receive message using POP3
Dim oPOP3 as FathMail.POP3
Set oPOP3 = New FathMail.POP3
oPOP3.ServerAddr = "mail.domain.com"
oPOP3.Username = "scott"
oPOP3.Password = "tiger"
oPOP3.Connect
if oPOP3.GetMessageCount Then
oMsg = oPOP3.Retrieve(1) 'retrieve first message and store it in Message object
End If
oPOP3.Disconnect
Archive message
Message data can be stored in a text variable using the GetRaw method from the Message object. And displayed later using SetRaw method. You can store sMsg in database or text file.
Dim sMsg as String
sMsg = oMsg.GetRaw
If you want to display a stored message from an archive, just read the string from a database and you can create the Message object using the SetRaw method.
sMsg=ReadDatabase()
oMsg.SetRaw sMsg
oSMTP.Send oMsg

ComponentSource ofrece un único servicio global, utilizado por más de 1.000.000 de desarrolladores en todo el mundo.