What I want is
Call logged on the 17/12/2002 12:38:02
By Paul Brennan
Description: probs with citrix connection, he has updated most machines in sligo and they are fine but one can't find client
Click on this link to check the status of your call http:\\LINK
Username=clientname@emailaddress.ie
Password=9807
Or you can contact me at such & such
I have been banging my head against a wall trying to get this to work. Thanks
Usually this is all it takes:
\n = newline
\n\n = whitespace
...so:
Call logged on the 17/12/2002 12:38:02\nBy Paul Brennan\n\nDescription: probs with citrix connection, he has updated most machines in sligo and they are fine but one can't find client\n\nClick on this link to check the status of your call\n\nhttp:\\LINK Username=clientname@emailaddress.ie\nPassword=9807\n\nOr you can contact me at such & such\n
...but if it's running on a Windows machine then the newline needs a carriage return added to it:
\r\n = new line
T
I'm running asp though chillisoft on a linux box. Also php is running on it. So I have a choice of language in which to use.
You will have to locate the part of the mailer script that puts the body together to see how it is building it and what options are available. Otherwise you will have to change the way it is constructing the body of the email to allow for formatting.
T