AllBasic
SMTP kullanarak mail gondermek (Attachment dahil)
Winsock ile SMTP sunucusuna baglanip mail gondermek.Option Explicit
'***********************************************************************
' GENERAL
'Modul ismi : clsSMTPSendMail
' PUBLIC SUBS
'
'***********************************************************************
'AddAttachFile : Mail'e dosya eklemek
' (ByVal vFilePath As String)
'ClearAttachedFiles : Mail'e eklenen dosyalari silmek
'***********************************************************************
' PRIVATE SUBS
'
'***********************************************************************
'***********************************************************************
' PUBLIC FUNCTIONS
'
'***********************************************************************
'UUEncodeFile : Attach dosyalarin UUencode algoritmasi ile
' SMTP attachment formatina uyarlanmasi.
' Attachment gonderimi
' "begin 664 dosyaismi.uzanti" veya
' "begin 644 dosyaismi.uzanti"
' satiri ile baslar,
' "`" & vbcrlf & "end" satirlari ile biter
' Ornek:
' begin 664 abc.txt
' --encode edilmis dosya--
' `
' end
' (strFilePath As String) As String
'***********************************************************************
' PRIVATE FUNCTIONS
'
'***********************************************************************
'WaitForResponse : SMTP sunucusundan vData cevabi gelene kadar
' beklemek.
' (vData As String) As Boolean
'***********************************************************************
' EVENTS
'
'***********************************************************************
Event TransferStatus(StatCode As Integer)'1 = Baglaniyor
' 2 = Baglandi
' 3 = Mesaj gonderiliyor
' 4 = Baglanti kesiliyor
' 5 = SMTP zaman asimi.Yanit bek
' lerken islem zaman asimina
' ugradi
' 6 = SMTP sunucu hatasi.
' Gecersiz komut
' 7 = Acik bir baglanti mevcut.
' Islem gerceklestirilemiyor
Event SMTPServerResponse(Response As String)
' SMTP sunucusundan gelen
' cevaplar.
'***********************************************************************
' DECLERATIONS
'
'***********************************************************************
Private mvarSMTPServerName As String
Private mvarSenderName As String
Private mvarSenderEmailAddress As String
Private mvarRecipientName As String
Private mvarRecipientEmailAddress As String
Private mvarEmailSubject As String
Private mvarEmailBody As String
Private mvarAttachFiles() As String
Private mvarSMTPTimeOut As Integer
Private mvarSMTPRemotePort As Long
Private WithEvents mvarWSocket As Winsock
Private mlocData As String
'***********************************************************************
Sub AddAttachFile(ByVal vFilePath As String)
'Degisiklikler
'***********************************************************************
vFilePath = Trim(vFilePath)
If vFilePath = "" Then Exit Sub
If mvarAttachFiles(0) <> "" Then
ReDim Preserve mvarAttachFiles(UBound(mvarAttachFiles) + 1)
mvarAttachFiles(UBound(mvarAttachFiles)) = vFilePath
Else
mvarAttachFiles(UBound(mvarAttachFiles)) = vFilePath
End If
End Sub
Sub ClearAttachedFiles()
'Degisiklikler
'***********************************************************************
ReDim mvarAttachFiles(0)
End Sub
Function SendEmail() As Boolean
'Degisiklikler
'***********************************************************************
Dim strDate As String
Dim strSend1 As String
Dim strSend2 As String
Dim strSend3 As String
Dim strSend4 As String
Dim strSend5 As String
Dim strSend6 As String
Dim strSend7 As String
Dim strSend8 As String
Dim strEncodedData As String
Dim strLines() As String
Dim lngI As Long
'***********************************************************************
'fn degeri ataniyor
SendEmail = False
'attachmentlar UUencode algoritmasiyla gonderiliyor
strEncodedData = ""
For lngI = 0 To UBound(mvarAttachFiles)
If mvarAttachFiles(lngI) <> "" Then
strEncodedData = strEncodedData & UUEncodeFile(mvarAttachFiles(lngI))
End If
Next
'attachmentlar temizleniyor
ClearAttachedFiles
'gonderim baslatiliyor
With mvarWSocket
If .State = sckClosed Then
strDate = Format(Date, "Ddd") & ", " & Format(Date, "dd Mmm YYYY") & " " & Format(Time, "hh:mm:ss") & "" & " -0600"
strSend1 = "mail from: " & SenderEmailAddress & vbCrLf
strSend2 = "rcpt to: " & RecipientEmailAddress & vbCrLf
strSend3 = "Date: " & strDate & vbCrLf
strSend4 = "From: """ & SenderName & """ <" & SenderEmailAddress & ">" + vbCrLf
strSend5 = "To: " & RecipientName & vbCrLf
strSend6 = "Subject: " & EmailSubject & vbCrLf
strSend7 = EmailBody & vbCrLf
strSend8 = "X-Mailer: STMP Sender" & vbCrLf
.LocalPort = 0
.Protocol = sckTCPProtocol
.RemoteHost = SMTPServerName
.RemotePort = SMTPRemotePort
.Connect
If Not WaitForResponse("220") Then .Close: Exit Function
RaiseEvent TransferStatus(1)
.SendData ("HELO " & SMTPServerName & vbCrLf)
If Not WaitForResponse("250") Then .Close: Exit Function
RaiseEvent TransferStatus(2)
.SendData (strSend1)
RaiseEvent TransferStatus(3)
If Not WaitForResponse("250") Then .Close: Exit Function
.SendData (strSend2)
If Not WaitForResponse("250") Then .Close: Exit Function
.SendData ("data" & vbCrLf)
'mesaj gonderiliyor -
If Not WaitForResponse("354") Then .Close: Exit Function
.SendData (strSend4 & strSend3 & strSend8 & strSend5 & strSend6 & vbCrLf)
If strEncodedData <> "" Then
.SendData (strSend7)
'Attachment gonderiliyor -
strLines = Split(strEncodedData, vbLf)
For lngI = 0 To UBound(strLines) - 1
.SendData strLines(lngI) & vbCrLf
Next
'hafiza temizleniyor
Erase strLines
strEncodedData = ""
'Attachment gonderiliyor +
Else
.SendData (strSend7 & vbCrLf)
End If
.SendData ("." & vbCrLf)
'mesaj gonderiliyor +
If Not WaitForResponse("250") Then .Close: Exit Function
.SendData ("quit" & vbCrLf)
RaiseEvent TransferStatus(4)
If Not WaitForResponse("221") Then .Close: Exit Function
.Close
Else
RaiseEvent TransferStatus(7)
Exit Function
End If
End With
'fn degeri ataniyor
SendEmail = True
End Function
Private Function WaitForResponse(vData As String) As Boolean
'Degisiklikler
'***********************************************************************
Dim mlocStart As Single
Dim mlocTmr As Single
'***********************************************************************
'fn degeri ataniyor
WaitForResponse = False
'beklenen cevap icin donguye giriliyor
mlocStart = Timer
Do
mlocTmr = Timer - mlocStart
DoEvents
If Len(mlocData) > 0 Then
If Left(mlocData, 3) <> vData Then
If mlocTmr > mvarSMTPTimeOut Then
RaiseEvent TransferStatus(6)
Exit Function
End If
Else
mlocData = ""
'fn degeri ataniyor
WaitForResponse = True
Exit Function
End If
Else
If mlocTmr > mvarSMTPTimeOut Then
RaiseEvent TransferStatus(5)
Exit Function
End If
End If
Loop
End Function
Private Sub mvarWSocket_DataArrival(ByVal bytesTotal As Long)
mvarWSocket.GetData mlocData
RaiseEvent SMTPServerResponse(mlocData)
Debug.Print mlocData
End Sub
Function UUEncodeFile(strFilePath As String) As String
'Degisiklikler
'***********************************************************************
Dim intFile As Integer 'file handler
Dim intTempFile As Integer 'temp file
Dim lFileSize As Long 'size of the file
Dim strFilename As String 'name of the file
Dim strFileData As String 'file data chunk
Dim lEncodedLines As Long 'number of encoded lines
Dim strTempLine As String 'temporary string
Dim I As Long 'loop counter
Dim j As Integer 'loop counter
Dim strResult As String
'***********************************************************************
'Get file name
strFilename = Mid$(strFilePath, InStrRev(strFilePath, "") + 1)
'Insert first marker: "begin 664 ..."
strResult = "begin 664 " + strFilename + vbLf
'Get file size
lFileSize = FileLen(strFilePath)
lEncodedLines = lFileSize 45 + 1
'Prepare buffer to retrieve data from
'the file by 45 symbols chunks
strFileData = Space(45)
intFile = FreeFile
Open strFilePath For Binary As intFile
For I = 1 To lEncodedLines
'Read file data by 45-bytes cnunks
If I = lEncodedLines Then
'Last line of encoded data often is not
'equal to 45, therefore we need to change
'size of the buffer
strFileData = Space(lFileSize Mod 45)
End If
'Retrieve data chunk from file to the buffer
Get intFile, , strFileData
'Add first symbol to encoded string that informs
'about quantity of symbols in encoded string.
'More often "M" symbol is used.
strTempLine = Chr(Len(strFileData) + 32)
If I = lEncodedLines And (Len(strFileData) Mod 3) Then
'If the last line is processed and length of
'source data is not a number divisible by 3, add one or two
'blankspace symbols
strFileData = strFileData + Space(3 - (Len(strFileData) Mod 3))
End If
For j = 1 To Len(strFileData) Step 3
'Breake each 3 (8-bits) bytes to 4 (6-bits) bytes
'1 byte
strTempLine = strTempLine + Chr(Asc(Mid(strFileData, j, 1)) 4 + 32)
'2 byte
strTempLine = strTempLine + Chr((Asc(Mid(strFileData, j, 1)) Mod 4) * 16 _
+ Asc(Mid(strFileData, j + 1, 1)) 16 + 32)
'3 byte
strTempLine = strTempLine + Chr((Asc(Mid(strFileData, j + 1, 1)) Mod 16) * 4 _
+ Asc(Mid(strFileData, j + 2, 1)) 64 + 32)
'4 byte
strTempLine = strTempLine + Chr(Asc(Mid(strFileData, j + 2, 1)) Mod 64 + 32)
Next j
'replace " " with "`"
strTempLine = Replace(strTempLine, " ", "`")
'add encoded line to result buffer
strResult = strResult + strTempLine + vbLf
'reset line buffer
strTempLine = ""
Next I
Close intFile
'add the end marker
strResult = strResult & "`" & vbLf + "end" + vbLf
'asign return value
UUEncodeFile = strResult
End Function
'***********************************************************************
Property Let SMTPServerName(ByVal vData As String)
mvarSMTPServerName = Trim(vData)
End Property
Property Get SMTPServerName() As String
SMTPServerName = Trim(mvarSMTPServerName)
End Property
'***********************************************************************
Property Let SenderName(ByVal vData As String)
mvarSenderName = Trim(vData)
End Property
Property Get SenderName() As String
SenderName = Trim(mvarSenderName)
End Property
'***********************************************************************
Property Let SenderEmailAddress(ByVal vData As String)
mvarSenderEmailAddress = Trim(vData)
End Property
Property Get SenderEmailAddress() As String
SenderEmailAddress = Trim(mvarSenderEmailAddress)
End Property
'***********************************************************************
Property Let RecipientName(ByVal vData As String)
mvarRecipientName = Trim(vData)
End Property
Property Get RecipientName() As String
RecipientName = Trim(mvarRecipientName)
End Property
'***********************************************************************
Property Let RecipientEmailAddress(ByVal vData As String)
mvarRecipientEmailAddress = Trim(vData)
End Property
Property Get RecipientEmailAddress() As String
RecipientEmailAddress = Trim(mvarRecipientEmailAddress)
End Property
'***********************************************************************
Property Let EmailSubject(ByVal vData As String)
mvarEmailSubject = Trim(vData)
End Property
Property Get EmailSubject() As String
EmailSubject = Trim(mvarEmailSubject)
End Property
'***********************************************************************
Property Let EmailBody(ByVal vData As String)
mvarEmailBody = Trim(vData)
End Property
Property Get EmailBody() As String
EmailBody = Trim(mvarEmailBody)
End Property
'***********************************************************************
Property Let LocData(ByVal vData As String)
mlocData = vData
End Property
Property Get LocData() As String
LocData = mlocData
End Property
'***********************************************************************
Property Let SMTPTimeOut(ByVal vData As Integer)
mvarSMTPTimeOut = vData
End Property
Property Get SMTPTimeOut() As Integer
SMTPTimeOut = mvarSMTPTimeOut
End Property
'***********************************************************************
Property Set WSocket(ByVal vData As Winsock)
Set mvarWSocket = vData
End Property
'***********************************************************************
Property Let SMTPRemotePort(ByVal vData As Long)
mvarSMTPRemotePort = vData
End Property
Property Get SMTPRemotePort() As Long
SMTPRemotePort = mvarSMTPRemotePort
End Property
'***********************************************************************
Property Get AttachFiles(Index As Integer) As String
If Index > UBound(mvarAttachFiles) Then Exit Property
AttachFiles = mvarAttachFiles(Index)
End Property
'***********************************************************************
Private Sub Class_Initialize()
'varsayilan degerler ataniyor
SMTPTimeOut = 60
SMTPRemotePort = 25
ReDim mvarAttachFiles(0)
End Sub
Kullanimi
Standart bir exe projesi acin.
Formun uzerine bir Winsock objesi (sckSMTP olarak isimlendirin) ve
commandbutton (Command1 olarak isimlendirin) yerlestirin.
Asagidaki kodu formun declerations kismina yapistirin
Private Sub Command1_Click()
dim ClassSMTP as new clsSMTPSendMail
Set ClassSMTP.WSocket = sckSMTP
ClassSMTP.SenderName = "Gonderici ismi"
ClassSMTP.SenderEmailAddress = "gonderen@abc.com"
ClassSMTP.SMTPServerName = "10.10.10.1"
ClassSMTP.RecipientName = "Alici ismi"
ClassSMTP.RecipientEmailAddress = "alici@abc.com"
ClassSMTP.EmailSubject = "Test"
ClassSMTP.EmailBody = "Merhabalar"
ClassSMTP.AddAttachFile "c:abcd.txt"
ClassSMTP.SendEmail
End Sub