I have to add subject in my email when I used sharethis plugin. Can anyone help me how can I add Subject in email ?
Here are my Meta tags.
<meta name="og:title" content="Click here to shop and fund {{$campaign_details->campaign_title}}" />
<meta name="og:url" content="{{url()->current()}}" />
<meta name="og:image" content="imgurl" />
<meta name="og:description" content="desc" />
<meta name="og:site_name" content="xyz.com" />
And below are my button code.
<div class="sharethis-inline-share-buttons"
data-url="{{url()->current()}}"
data-title="Click here"
data-image="img.png"
data-username="Naushil"
data-description = "demo"
data-message=" Goal is : 125">
</div>
I couldn't find documentation on it, but I had the same problem and just crawled the JS file it calls for clues. The field you're looking for is data-email-subject="whatever" . This will curate "whatever" into the subject line of your shared email.