Auto generate text in e-mail from Form

Runes

Registered User.
Local time
Today, 05:00
Joined
Feb 11, 2010
Messages
20
Hi all​
I’m looking for a vba code that can auto generate the text in an e-mail based on cells/textbox in the form you are looking at. When you click on the e-mail button, the email will put in fixed text + [data from name of Cell1(textbox1) in table1/Form1] in subject field automatically. And the same in the message text.​
Thanks
 
Generally:

Something = "Fixed text here" & Me.Textbox1 & "more fixed text here
 
I'm a newbie in VBA coding, it is possible to help me with the entire code. The e-mail adresses I will send to will be in the vba code.
 

Users who are viewing this thread

Back
Top Bottom