Use Mailqueue System

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • khalled
    Member
    • Oct 2008
    • 80
    • 4.2.X

    Use Mailqueue System

    Use Mailqueue System
    When enabled, subscription emails generated by your site will be processed in batches to lessen the load on your server. Account activation, lost passwords and other vital emails are sent instantly regardless of this setting. If your site has low traffic, subscription emails may be delayed.
    The question how i can make mail send from contact us form sent instantly and reach my mail regardless of the above setting.
    Last edited by khalled; Tue 23 Dec '14, 8:46am.
  • kh99
    Senior Member
    • Aug 2009
    • 533

    #2
    This can't be done unless you modify code (or use a plugin). You can ask about it at vbulletin.org.

    Comment

    • khalled
      Member
      • Oct 2008
      • 80
      • 4.2.X

      #3
      Wayne Luke
      if you use the mailqueue, you can't get Contact Us immediately if there is a queue. The solution would be to switch to an SMTP service so you don't need to limit your emails on a shared hosting provider.

      Comment

      • khalled
        Member
        • Oct 2008
        • 80
        • 4.2.X

        #4
        Originally posted by kh99
        Create a new plugin using hook location sendmessage_docontactus_complete and this code:
        PHP Code:
        $url =& $vBulletin->url;
        eval(
        fetch_email_phrases('contactus'$languageid));
        vbmail($destemail$subject$messagetrue$vbulletin->GPC['email'], ''$name);
        print_standard_redirect('redirect_sentfeedback'truetrue); 



        Comment

        Related Topics

        Collapse

        Working...