Unfortunately some of our staff are based in council offices and so we litterally cannot have anything installed on their machines as you can imagine. I have just purchased VBMAPI security evader which gives me a virtual com addin made up by a load of class libraries.
I suppose another method could have been to write an email script and have the staff add it to their outlook client and then the spreadsheet would call that, but the users have low level IT skills and I physically don't have time to talk hundreds of people through how to do this.
Do you think VBMAPI security evader will solve my issue? And also I am using their example function:
Public Function Sendmail(Optional Send_To As String, _
Optional Subject As String, _
Optional MessageBody As String, _
Optional Attachments As String) As Boolean
On Error GoTo ErrorHandler:
Dim Session As vbMAPI_Session
Dim Item As vbMAPI_MailItem
Dim AttachmentPath As Variant
' Create the vbMAPI Session
Set Session = vbMAPI_Init.NewSession
' Logon to the MAPI session
Session.LogOn
' Create a new message
Set Item = Session.GetDefaultFolder(FolderType_Outbox).Items.Add
With Item
.Subject = Subject
.To_ = Send_To
' Set the message BODY (HTML or plain text)
If Left(MessageBody, 6) = "<HTML>" Then
.HTMLBody = MessageBody
Else
.Body = MessageBody
End If
' Add any specified attachments
For Each AttachmentPath In Split(Attachments, ";")
AttachmentPath = Trim(AttachmentPath)
If Len(AttachmentPath) > 0 Then
.Attachments.Add AttachmentPath
End If
Next
.Send
End With
' Optional - force a send/receive
Session.OutlookSendReceiveAll
' If we got here without error, then everything went ok.
Sendmail = True
ExitRoutine:
Exit Function
ErrorHandler:
MsgBox "An error has occured in SendMail() " & vbCrLf & vbCrLf & _
"Number: " & CStr(Err.Number) & vbCrLf & _
"Description: " & Err.Description, vbApplicationModal
Resume ExitRoutine
End Function
' Example of usage:
This is called from various email modules such as, the following, but I keep getting a ByRef type missmatch on the Sendmail Send_To:
Public Sub EMAILnSAVE()
Dim FileExtStr As String
Dim FileFormatNum As Long
Dim Sourcewb As Object
Dim Destwb As Object
Dim cell As Long
Dim NR As Long
Dim wsData As Worksheet
Dim SaveStr As String
Dim tagerror As String
Dim Send_To, Subject, MessageBody, Attachments
Dim errPar As String
Dim Deskstr As String
With Application
.ScreenUpdating = False
.EnableEvents = False
End With
Set Sourcewb = ThisWorkbook
With Sourcewb
Set wsData = .Sheets("OUTPUT")
End With
Set Destwb = Application.Workbooks.Add
With Destwb.Worksheets("Sheet1")
.Range("A1") = "EMP_ID"
.Range("B1") = "KnownAs"
.Range("C1") = "JobTitle"
.Range("D1") = "LineManager"
.Range("E1") = "ReportedSick"
.Range("F1") = "StartDate"
.Range("G1") = "EndDate"
.Range("H1") = "Workdays"
.Range("I1") = "Long Term Sick"
.Range("J1") = "Comments"
.Range("A2").Name = "Area"
End With
With wsData
NR = .Cells(.Rows.Count, "A").End(xlUp).Row
.Range("A2:J" & NR).Copy Destination:=Destwb.Worksheets("Sheet1").Range("Area")
End With
ActiveSheet.Name = "Sickness Absense Monitoring"
If Val(Application.Version) < 12 Then
' You are using Excel 97-2003.
FileExtStr = ".xls": FileFormatNum = -4143
Else
Select Case Sourcewb.FileFormat
' Code 51 represents the enumeration for a macro-free
' Excel 2007 Workbook (.xlsx).
Case 51
FileExtStr = ".xlsx"
FileFormatNum = 51
' Code 52 represents the enumeration for a
' macro-enabled Excel 2007 Workbook (.xlsm).
Case 52
FileExtStr = ".xlsm"
FileFormatNum = 52
' Code 56 represents the enumeration for a
' a legacy Excel 97-2003 Workbook (.xls).
Case 56
FileExtStr = ".xls"
FileFormatNum = 56
' Code 50 represents the enumeration for a
' binary Excel 2007 Workbook (.xlsb).
Case Else
FileExtStr = ".xlsb"
FileFormatNum = 50
End Select
End If
Deskstr = CreateObject("WScript.Shell").SpecialFolders("Desktop") _
& Application.PathSeparator & "SAM BACKUP"
If Dir(Deskstr, vbDirectory) = "" Then MkDir Deskstr
SaveStr = Deskstr & Application.PathSeparator & ActiveSheet.Name _
& " - " _
& Environ("USERNAME") _
& " - " _
& Format(Now, " d-m-yy h.mm AM/PM")
'-----------------------------------------------------------------------------
Send_To = "example@email.ac.uk"
Subject = "Sickness Absence Monitoring - OLASS " & Format(Now, "mm/yyyy") & " HOD: " & Sourcewb.Worksheets("INPUT").Range("HNAME")
MessageBody = "MANAGERS DETAILS:" & vbNewLine & vbNewLine _
& Sourcewb.Worksheets("INPUT").Range("MNAME") & " - " & Sourcewb.Worksheets("INPUT").Range("EMP") _
& vbNewLine & vbNewLine _
& Sourcewb.Worksheets("INPUT").Range("JOB") & " - " _
& Sourcewb.Worksheets("INPUT").Range("SITE") & vbNewLine & vbNewLine _
& "DEPARTMENT - " & Sourcewb.Worksheets("INPUT").Range("dept") & " DIVISION - " _
& Sourcewb.Worksheets("INPUT").Range("DIV") & vbNewLine & vbNewLine _
& "HEAD OF DEPARTMENT:" & vbNewLine & vbNewLine _
& Sourcewb.Worksheets("INPUT").Range("HNAME") & vbNewLine & vbNewLine _
& "QUERY DETAILS:" & vbNewLine & vbNewLine _
& Sourcewb.Worksheets("INPUT").Range("YNAME") & " - " & Sourcewb.Worksheets("INPUT").Range("YEMP") & vbNewLine & vbNewLine _
& "CONTACT NUMBER - " & Sourcewb.Worksheets("INPUT").Range("PHONE")
'-----------------------------------------------------------------------------
With Destwb
.SaveAs SaveStr & FileExtStr, FileFormat:=FileFormatNum
.Close savechanges:=False
On Error Resume Next
End With
Attachments = Deskstr & SaveStr
Sendmail Send_To, Subject, MessageBody, Attachments
Call Module7.EMAILLIST
Call Module8.EMAILCONF
On Error GoTo tagerror
Sourcewb.Activate
Sheets("INPUT").Select
clean_up:
With Application
.EnableEvents = True
.ScreenUpdating = True
End With
Range("iCLEAR") = ""
Exit Sub
tagerror:
MsgBox "Error: (" & Err.Number & ") " & Err.Description & " at " & Err.Source, vbCritical
Resume clean_up
End Sub
Bookmarks