ExcelTheCell
Board Regular
- Joined
- Nov 14, 2010
- Messages
- 158
Code:
IE.Navigate "[URL]https://mail.google.com/mail/u/0/#inbox[/URL]"
Any easy way...
Last edited:
IE.Navigate "[URL]https://mail.google.com/mail/u/0/#inbox[/URL]"
I'm allways sign in. All i need is code that will click on Compose button and insert text in fileds TO,BODY and send to recipient, and possible to sign out from accountCode:IE.Navigate "[URL]https://mail.google.com/mail/u/0/#inbox[/URL]"
Any easy way...
IE.Navigate "https://mail.google.com/mail/u/0/#compose"
Code:IE.Navigate "https://mail.google.com/mail/u/0/#compose&to=adreess@mail.com&subject=Test&bcc=address2@mail.com
Sub AfterLogin()
Dim IE As InternetExplorer
Set IE = New InternetExplorer
IE.Visible = True
IE.Navigate "https://mail.google.com/mail/u/0/#compose&to=adreess@mail.com"
End Sub