I have version v3.3.05 or something like that and I want to change the senders email and name field so its only displays and is not editable like the current version.
I believe the change lies in the following code. == <td bgColor=<% =strPopUpTableColor %> align="right" nowrap><b><font face="<% =strDefaultFontFace %>" size=<% =strDefaultFontSize %>>Your Name:</font></b></td> <td bgColor=<% =strPopUpTableColor %>><input name=YName type=<% if YName <> "" then Response.Write("hidden") else Response.Write("text") end if %> value="<% = YName %>" size=25><font face="<% =strDefaultFontFace %>" size=<% =strDefaultFontSize %>> <% if YName <> "" then Response.Write(YName) end if %></font></td> ==
Thanks for your help i've also now amended pop_mail and pop_send_to_a_friend so all my outgoing mail has a disclaimer.
= code below =
strMessage = strMessage & strForumURL & vbNewline & vbNewline & vbNewline strMessage = strMessage & "Disclaimer" & vbNewline strMessage = strMessage & "This message and any attachments are intended for the above named only, and may be privileged or confidential." & vbNewLine strMessage = strMessage & "This email has been sent via a PhilsBBS (UK) Limited mail server and does not reflect our views, but the views of the sender." & vbNewLine strMessage = strMessage & "PhilsBBS (UK) Limited will never share, sell, or rent individual personal information with anyone without your advance permission or unless ordered by a court of law. " & vbNewLine strMessage = strMessage & "We do not guarantee that this material is free from viruses or any other defects although extreme care has been taken to minimize the risk." & vbNewLine = end of code =
I thought it was a good idea to cover us for any email a user sends via the mail server. What do you think.
Personally I think it may be worth adding this to a future version, but them decided. Would be nice to see i've given something back to snitz.
quote:I have version v3.3.05 or something like that and I want to change the senders email and name field so its only displays and is not editable like the current version.