Hallo,
Ik gebruik onderstaande code om snel een excel betand te mailen.
Nu is het zo dat veel collega`s dit bestand gaan gebruiken en ik niet wil dat men in de VBA gaat zitten rommelen, dus lijkt het mij beter dat men hun mail adres in cel A1 plaatst.
Dit om de afzender juist in de mail te krijgen en voor de eventuele reply.
Deze code werkt perfect zolang ik het mail adres "hard" in de VBA zet maar ik krijg het dus niet voor elkaar om naar de cel te laten kijken waar het adres in staat.
Is dit met een simpele aanpassing haabaar of moet dan de hele code verbouwd worden
(wat mij niet gaat lukken)
Ik gebruik onderstaande code om snel een excel betand te mailen.
Nu is het zo dat veel collega`s dit bestand gaan gebruiken en ik niet wil dat men in de VBA gaat zitten rommelen, dus lijkt het mij beter dat men hun mail adres in cel A1 plaatst.
Dit om de afzender juist in de mail te krijgen en voor de eventuele reply.
Deze code werkt perfect zolang ik het mail adres "hard" in de VBA zet maar ik krijg het dus niet voor elkaar om naar de cel te laten kijken waar het adres in staat.
Is dit met een simpele aanpassing haabaar of moet dan de hele code verbouwd worden

Code:
Sub Mail_Sheet()
Application.DisplayAlerts = False
'Working in 97-2007
Dim FileExtStr As String
Dim FileFormatNum As Long
Dim Sourcewb As Workbook
Dim Destwb As Workbook
Dim TempFilePath As String
Dim TempFileName As String
Dim iMsg As Object
Dim iConf As Object
Dim Flds As Variant
With Application
.ScreenUpdating = False
.EnableEvents = False
End With
Set Sourcewb = ActiveWorkbook
'Copy the ActiveSheet to a new workbook
'ActiveSheet.Copy
Sheets(Array("Trans-D", "Trans-C", "Trans-O", "Trans-P")).Copy
Set Destwb = ActiveWorkbook
'Determine the Excel version and file extension/format
With Destwb
If Val(Application.Version) < 12 Then
'You use Excel 97-2003
FileExtStr = ".xls": FileFormatNum = -4143
Else
'You use Excel 2007
'We exit the sub when your answer is NO in the security dialog that you only
'see when you copy a sheet from a xlsm file with macro's disabled.
If Sourcewb.Name = .Name Then
With Application
.ScreenUpdating = True
.EnableEvents = True
End With
MsgBox "Your answer is NO in the security dialog"
Exit Sub
Else
Select Case Sourcewb.FileFormat
Case 51: FileExtStr = ".xlsx": FileFormatNum = 51
Case 52:
If .HasVBProject Then
FileExtStr = ".xlsm": FileFormatNum = 52
Else
FileExtStr = ".xlsx": FileFormatNum = 51
End If
Case 56: FileExtStr = ".xls": FileFormatNum = 56
Case Else: FileExtStr = ".xlsb": FileFormatNum = 50
End Select
End If
End If
End With
'Save the new workbook/Mail it/Delete it
TempFilePath = Environ$("temp") & "\"
'TempFileName = "Part of " & Sourcewb.Name & " " & Format(Now, "dd-mmm-yy h-mm-ss")
TempFileName = " " & " " & Format(Now, "dd-mmm-yy h.mm uur")
With Destwb
For k = 1 To 4
sh = WorksheetFunction.Choose(k, "Trans-D", "Trans-C", "Trans-O", "Trans-P")
Sheets(sh).Shapes("CommandButton1").Delete
Sheets(sh).Shapes("CommandButton2").Delete
Next k
.SaveAs TempFilePath & TempFileName & FileExtStr, FileFormat:=FileFormatNum
.Close savechanges:=False
End With
Set iMsg = CreateObject("CDO.Message")
Set iConf = CreateObject("CDO.Configuration")
iConf.Load -1 ' CDO Source Defaults
Set Flds = iConf.Fields
With Flds
.Item("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2
.Item("http://schemas.microsoft.com/cdo/configuration/smtpserver") = "mail.me.nl"
.Item("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = 25
.Update
End With
With iMsg
Set .Configuration = iConf
'.To = "test@test.com"
[COLOR="#FF0000"][COLOR="#FF0000"][B].To = kijken naar cel A1[/B][/COLOR][/COLOR]
.CC = ""
.BCC = ""
.FROM = """ik@ik.nl"
.Subject = Chr(187) & Chr(187) & " transp voor " & ActiveSheet.Range("B9").Text & " week " & ActiveSheet.Range("B11").Text & ""
.TextBody = "Beste Collega`s, " & vbCrLf & vbCrLf & _
"Hierbij een aanvraag voor een trans voor " & ActiveSheet.Range("B9").Text & " week " & ActiveSheet.Range("B11").Text & ""
.AddAttachment TempFilePath & TempFileName & FileExtStr
.Send
End With
'Delete the file you have send
Kill TempFilePath & TempFileName & FileExtStr
With Application
.ScreenUpdating = True
.EnableEvents = True
End With
CreateObject("WScript.Shell").Popup " Aanvraag trans is verstuurt !!", 1, " Ik sluit vanzelf na 2 Seconden"
End Sub