Hi,
I need to send an email using vb script.Can anyone guide me with the script
Hi
welcome to uipath community
did we try with SEND OUTLOOK MAIL ACTIVITY or SEND EXCHANGE MAIL ACTIVITY or SEND SMTP MAIL ACTIVITY
Cheers @raghuramk
hi @Palaniyappan.I tried these activities.I want to invoke the vb script.
Try this @raghuramk
Dim e_mail As New MailMessage()
e_mail.From = New MailAddress("mail address")
e_mail.[To].Add("mail address")
e_mail.Subject = "Mail through VB"
Dim smtp As New SmtpClient("SMTP")
e_mail.Body = "Body of mail"
e_mail.Attachments.Add(data)
smtp.Send(e_mail)
This will work if the mail is configured in your machine and if you provide the same smtp in the code
Let me know if you don’t have your outlook configured in your machine. that is somewhat different from this @raghuramk