F
flo
Hi.
I'd like to send an email with VBA from Excel 2002, using Groupwise 6.5.
I've tried these several code samples but nothing worked..
// Try 1
ActiveWorkbook.EnvelopeVisible = True
With ActiveSheet.MailEnvelope
.Introduction = "This is a sample worksheet."
.Item.To = "(e-mail address removed)"
.Item.Send
End With
// Try 2
Dim HLink As String
HLink = "mailto:" & Recipient & "(e-mail address removed)"
ActiveWorkbook.FollowHyperlink (HLink)
Any idea to solve this problem ?
Thanxs.
I'd like to send an email with VBA from Excel 2002, using Groupwise 6.5.
I've tried these several code samples but nothing worked..
// Try 1
ActiveWorkbook.EnvelopeVisible = True
With ActiveSheet.MailEnvelope
.Introduction = "This is a sample worksheet."
.Item.To = "(e-mail address removed)"
.Item.Send
End With
// Try 2
Dim HLink As String
HLink = "mailto:" & Recipient & "(e-mail address removed)"
ActiveWorkbook.FollowHyperlink (HLink)
Any idea to solve this problem ?
Thanxs.