SOLVED

Open email link

Go to solution
Anonymous
Not applicable

Open email link

I want customers who receive an email to click on a link, which will inturn open up an email to a sales rep. I can set this up, but is there any way to have the Subject line pre-populated? All I can get is the to address filled in automatically.
Tags (1)
1 ACCEPTED SOLUTION

Accepted Solutions
Matt_Stone2
Level 9

Re: Open email link

Check out this page for a bunch of things you can do with a mailto link: http://css-tricks.com/snippets/html/mailto-links/

In your case, you would simply do this: <a href="mailto:rep_email@your-company.com?subject=Your subject here">Click here</a>

View solution in original post

2 REPLIES 2
Matt_Stone2
Level 9

Re: Open email link

Check out this page for a bunch of things you can do with a mailto link: http://css-tricks.com/snippets/html/mailto-links/

In your case, you would simply do this: <a href="mailto:rep_email@your-company.com?subject=Your subject here">Click here</a>
Anonymous
Not applicable

Re: Open email link

Sensational, thanks so much!