Forum Discussion

Chandrakanth K's avatar
Chandrakanth K
Copper Contributor
Mar 12, 2019

Change the Email id in From field in outlook using VBA

Hello All,

 

I have code where VBA will attach files and send e-mail to users. But all emails are going through my E-mail ID. i need help to know on how can i change the From address before sending email? Below is my existing code.

 

Dim olApp As Object
Dim olMail As Object
Dim olRecip As Object
Dim olAtmt As Object
Dim iRow As Long
Dim Recip As String
Dim Subject As String
Dim Atmt As String
Dim sMsgBody As String


iRow = 2

Set olApp = CreateObject("Outlook.Application")

Dim Sht As Worksheet
Set Sht = ThisWorkbook.Worksheets("Sheet1")

Do Until IsEmpty(Sht.Cells(iRow, 1))

Recip = Sht.Cells(iRow, 1).Value
Subject = Sht.Cells(iRow, 2).Value
Atmt = Sht.Cells(iRow, 3).Value ' Attachment Path

Set olMail = olApp.CreateItem(0)

With olMail
Set olRecip = .Recipients.Add(Recip)
.Subject = Subject
.body = sMsgBody
.Display
.from = Sht.Range("A3").Value
Set olAtmt = .Attachments.Add(Atmt)
.send
olRecip.Resolve
End With

iRow = iRow + 1

Loop

Set olApp = Nothing

 

Regards,

Chandrakanth.K

No RepliesBe the first to reply

Resources