VBScript Examples

ChilkatHOMEAndroid™ASPVisual BasicVB.NETC#iOS (IPhone)Objective-CC++CUnicode C++Unicode CMFCDelphi DLLDelphi ActiveXFoxProJavaPerlPHP ExtensionPHP ActiveXPythonPowerShellRubySQL ServerVBScript

VBScript Examples

Bounced Mail
Bz2
Character Encoding
Digital Certificates
CSV
Digital Signatures
Email
FTP
HTML Conversion
HTTP
IMAP
Encryption
MHT / HTML Email
POP3
PFX
RSA
S/MIME
SFTP
SMTP
Socket
Spider
SSH
SSH Key
SSH Tunnel
String
Tar
Upload
XML
XMP
Zip Compression
Self-Extractor

More Examples...
Amazon S3
Email Object
DKIM / DomainKey
NTLM
FileAccess
Byte Array
RSS
Atom
Service
PPMD
Deflate
DH Key Exchange
DSA
Bzip2
LZW

 

 

 

 

 

 

 

POP3 to SMTP Forwarder

Download Chilkat Email ActiveX

Read a POP3 mailbox and forwards the email to another email address, keeping the recipients in the original email the same.

Dim fso, outFile
Set fso = CreateObject("Scripting.FileSystemObject")
Set outFile = fso.CreateTextFile("output.txt", True)

'  The mailman object is used for receiving (POP3)
'  and sending (SMTP) email.
set mailman = CreateObject("Chilkat.MailMan2")

'  Any string argument automatically begins the 30-day trial.
success = mailman.UnlockComponent("30-day trial")
If (success <> 1) Then
    MsgBox "Component unlock failed"
    WScript.Quit
End If

'  Set the POP3 server's hostname
mailman.MailHost = "mail.chilkatsoft.com"

'  Set the POP3 login/password.
mailman.PopUsername = "matt@chilkatsoft.com"
mailman.PopPassword = "****"

'  The the UIDLs for all email in the POP3 mailbox.
Set saUidls = mailman.GetUidls()
If (saUidls Is Nothing ) Then
    MsgBox mailman.LastErrorText
    WScript.Quit
End If

'  Download the email from the server.  Call FetchMultipleMime
'  because we don't want to load the emails into email objects.
'  (We'll delete the emails that are forwarded without error.)
Set saMime = mailman.FetchMultipleMime(saUidls)

If (saMime Is Nothing ) Then

    MsgBox mailman.LastErrorText
    WScript.Quit
End If

'  Set the SMTP hostname for sending.
mailman.SmtpHost = "mail.chilkatsoft.com"
mailman.SmtpUsername = "admin@chilkatsoft.com"
mailman.SmtpPassword = "****"

n = saMime.Count

fromAddr = "matt@chilkatsoft.com"
toAddr = "admin@chilkatsoft.com"

bAllOk = 1

If (n > 0) Then
    For i = 0 To n - 1

        strMime = saMime.GetString(i)

        '  Forward the email.
        success = mailman.SendMime(fromAddr,toAddr,strMime)
        If (success <> 1) Then
            bAllOk = 0
            outFile.WriteLine(mailman.LastErrorText)
            Exit Do
        End If

    Next
End If

'  Remove the emails in saUidls from the POP3 server.
If (bAllOk = 1) Then
    success = mailman.DeleteMultiple(saUidls)
    If (success <> 1) Then
        outFile.WriteLine(mailman.LastErrorText)
    End If

End If


outFile.Close

© 2000-2013 Chilkat Software, Inc. All Rights Reserved.