VBA is your answer.<br>If you just want to send the characters like <br><br>Mary Smith<br>23232 54th street<br>Tampa, FL 3333<br>828-222-3333<br><br>Say "Mary" is in a text box on your form called FirstName<br>And "Smith" is in LastName<br>----------------------------------<br> Dim wholename As String<br> Dim Address As String<br> Dim CityStZip As String<br> Dim BodyText As String<br> <br> wholename = Me![FirstName] & " " & Me![LastName]<br> Address = Me![Address]<br> CityStZip = Me![City] & ", " & Me![State] & " " & Me![zip]<br> <br> 'Create message<br> BodyText = wholename & Chr$(10) & Chr$(13)<br> BodyText = BodyText & Address & Chr$(10) & Chr$(13)<br> BodyText = BodyText & CityStZip<br> <br> 'E-mail above message<br> DoCmd.SendObject acSendNoObject, "", acFormatTXT, "To Email", , , "Subject of Email", BodyText, False<br>----------------------------------<br><br>Now this code will get any textbox(es) on your form and add all of the text boxes together and then send that text to an e-mail automatically.<br>If you change the "False" at the end of the last line to "True" it will create an e-mail and then stop to let you add or make changes. Which you must then hit Send to make it go.<br> <br> <br> <p>DougP<br><a href=mailto: dposton@universal1.com> dposton@universal1.com</a><br><a href= > </a><br> Ask me how Bar-codes can help you be more productive.