Oh no! Where's the JavaScript?
Your Web browser does not have JavaScript enabled or does not support JavaScript. Please enable JavaScript on your Web browser to properly view this Web site, or upgrade to a Web browser that does support JavaScript.
Not a member yet? Click here to register.
Forgot Password?

Emailing news articles

Asked Modified Viewed 1,267 times
M
mfaustin
M
  • Newbie, joined since
  • Contributed 7 posts on the community forums.
  • Started 3 threads in the forums
  • Started this discussions
asked
Newbie

Is there a mod that allows a user to input an email address when creating a news item and have it delivered to that address with all of its contents?
0 replies

4 posts

P
PolarFox
P
  • Veteran Member, joined since
  • Contributed 1,633 posts on the community forums.
  • Started 29 threads in the forums
answered
Veteran Member

Use subscriptions.
0 replies
M
mfaustin
M
  • Newbie, joined since
  • Contributed 7 posts on the community forums.
  • Started 3 threads in the forums
  • Started this discussions
answered
Newbie

WHere would I access that? I can't see anything in my admin panel that says subscriptions.

Thanks!
0 replies
P
PolarFox
P
  • Veteran Member, joined since
  • Contributed 1,633 posts on the community forums.
  • Started 29 threads in the forums
answered
Veteran Member

Maybe plugins, ot RSS + feedburner service.
0 replies
C
Craig
C
Craig 14
  • Fusioneer, joined since
  • Contributed 4,462 posts on the community forums.
  • Started 212 threads in the forums
answered
Fusioneer

sendemail(); function is useful.

 require_once INCLUDES."sendmail_include.php";
      
        $toname = "Craig";   // TO NAME
        $toemail = "craig(at)craigshouse.com";   // SENDS EMAIL TO  ADDRESS
        $fromname = "Craig";    // FROM  NAME
        $fromemail = $settings['siteemail'];   // SENDS EMAIL FROM SITE EMAIL ADDRESS
        $subject = "TEST";    // EMAIL SUBJECT
        $emailmessage = "Hi Just a Test using sendemail function.\n\nRegards";  //EMAIL MESSAGE
        sendemail($toname, $toemail, $fromname, $fromemail, $subject, $emailmessage);   // SEND THE Email


Use the @ not (at) lol
0 replies

Labels

None yet

Statistics

  • Views 0 views
  • Posts 4 posts
  • Votes 0 votes
  • Topic users 3 members

3 participants

C
C
Craig 14
  • Fusioneer, joined since
  • Contributed 4,462 posts on the community forums.
  • Started 212 threads in the forums
P
P
  • Veteran Member, joined since
  • Contributed 1,633 posts on the community forums.
  • Started 29 threads in the forums
M
M
  • Newbie, joined since
  • Contributed 7 posts on the community forums.
  • Started 3 threads in the forums
  • Started this discussions

Notifications

Track thread

You are not receiving notifications from this thread.

Related Questions

Not yet