SendObject

G

Greg

I am using sendobject to send an email to the principal of my school when
a student is on the way down to the office. Is there a way to add a paragraph
or line break in the Message Text portion of the sendobject command?

Rip

For example I want the message to look like this:

Student Name:

This student is on the way to the office right now.
 
C

Cheryl Fischer

In the text string which builds the body of the message insert the following
between the name of the student and the string which starts "This student
....":


& Chr(10) & Chr(13) & Chr(10) & Chr(13) &

The above is two sets of Carriage Return-Line Feed
 
Top