Newbies Mikedonges Posted August 4, 2005 Newbies Posted August 4, 2005 Howdy, I'm new to the forum. I'm trying to set up a bug tracking database, and I want people to be able to send emails along with their bug submissions from the web client (currently IWP, but eventually with Advanced Server). I'd prefer to make it unobtrusive and talk directly with an SMTP server. The only decent plug-in I have found (SMTPit) doesn't support the web clients. Any ideas? Not an advanced user here. Just getting started. Thanks, Mike
CyborgSam Posted August 4, 2005 Posted August 4, 2005 Mike-> Welcome to the forums! The only way I know of is to use the script step Open URL. This will open the user's email client, which has to be properly configured to work. The syntax for the URL is: "mailto:" & EmailAddressTextField & "?Subject=" & Substitute ( Substitute ( SubjectLineTextFieldName ; "?" ; "--QuestionMark--" ); "&"; "--Ampersand--") & "&Body=" & Substitute ( Substitute ( BodyTextFieldName & "¶" ; "?" ; "--QuestionMark--" ); "&"; "--Ampersand--") The fields SubjectLineTextFieldName and BodyTextFieldName CANNOT contain a question mark or ampersand, so the substitute functions replace them with the text: --QuestionMark-- and --Ampersand--. EmailAddressTextField must contain a valid email address like [email protected]
Recommended Posts
This topic is 7319 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now