Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'activation email'

Viewing 25 results - 701 through 725 (of 1,427 total)
  • Author
    Search Results
  • #151620

    In reply to: Send Welcome Email

    bruceleebee
    Participant

    Hey @mercime,

    They definitely get the activation email. I have it setup with an SMTP email service (mandrill) and have tested it to make sure it avoids spam filters. So it gets sent, and it lands in the inbox – and they are activating their email – but then they don’t login again or they request a password change or something. It’s not all users, but enough to try and make a fix.

    I think it’s like this…

    They sign up for an account – do some other stuff – come back and see an activation email so they click on it… but now they have forgotten then details they used when signing up. Or they sign up – log in – but then come back a day or two later and have forgotten their details.

    If a welcome email was sent with their user details (like most sites do) they would have it stored somewhere they can access it again and again whenever they forget.

    Do you know how I can set this up? plugin or otherwise?

    #151601

    In reply to: Send Welcome Email

    @mercime
    Participant

    I think the problem is that they never get a sent an email with their account details (username and password) when they join.

    You mean they don’t receive an activation email? They should already know what their username and password is because that’s required when you register.

    Have you checked whether it’s your site that’s not sending the activation email or whether it’s their email service provider (gmail,yahoo,hotmail,aol,etc) that’s blocking your email and/or sending it to user’s spam folder?

    #151264
    mindyjoy
    Participant

    Does anyone have a solution for this? I am facing the same problem. Some new users are not receiving the activation email. It is not going to their spam folders. I estimate about every 5th user does not get the email. I can tell who doesn’t receive the email because their Forum Role is blank. Is there a way to generate and re-send the activation email, or manually activate these users? Thank you.

    #151023
    Pedro
    Participant

    I had the same issue and I want to share here what I did to make activation emails reach the inbox (especially in Gmail):
    – added SPF and DKIM DNS records in order to certify that the e-mails are legitimate, especially if your host uses a third party service to send them, or they get sent from a different domain
    – changed the default “from” e-mail address and “from name” fields using a plugin. I used WP-Mail-SMTP plugin that also allows me to use my own e-mail address (like a google apps one), but there are plenty others that you could use

    After these steps the e-mails were still being marked as spam by Gmail and the only thing left was to edit the activation e-mail content itslef. Thank you Paul for adding the option in Welcome Pack plugin. I enabled “Customise the emails sent by BuddyPress, either in plain text or rich HTML versions.” I then edited the content and subject by adding more text and there it was, activation e-mail wasn’t marked as spam anymore.

    I hope this helps someone else as I spent quite some time making it work 🙂

    #150660
    Dedalos
    Participant

    Thank for your reply.

    I tried to register a new user by fronend but Im having problems with that, no email has been sent. I tried using Budypress Pending Activations, and try to go to settings of te plugin and say I have no privileges to access the page (as adminÂż?). ok…, I registeres a new one in the dashboard: the same problem updating a post.

    The users exists before I upgraded buddypres (1.5 to 1.6), and If I promote the user as admin he can do it, but not as Editor or Author.

    The author role is set by default to registeres users.

    Probably the problem to send the activation email is apart of the other problem…

    #150589
    Ben Hansen
    Participant

    people who have registered but never clicked their activation links in the generated emails would be the people who only show up in the backend not sure if it has anything to do with wanguard probably best to test the registration process yourself to determine if an actual issue exists (both with and without that plugin activated). if an issue does exist with their plugin, they would best to ask about it, i would think.

    #150457
    Ben Hansen
    Participant

    you may want to look into s2 member i think it can handle everything you are trying to achieve also i don’t think you should be so concerned about the buddypress activation process as opposed to the wordpress activation for security reasons i believe if anything the buddypress slightly more secure but for the most part i think they’re the exact same thing (other then the additional default email verification step for buddypress) in fact if someone registers for your site but fails to activate they will be a regular wordpress user and not listed with your other buddypress members.

    #150229
    Eduardo
    Participant

    To be more precise, I need to access $bp->loggedin_user. If I do not run do_action(‘bp_init’) I get an object like this:

    `// not using do_action(‘bp_init’);
    var_dump($bp->loggedin_user);

    object(stdClass)#3391 (6) {
    [“id”]=>
    int(0)
    [“fullname”]=>
    bool(false)
    [“is_site_admin”]=>
    bool(false)
    [“is_super_admin”]=>
    bool(false)
    [“domain”]=>
    NULL
    [“userdata”]=>
    bool(false)
    }`

    But if I do run with do_action(‘bp_init’) I can get all the correct information, but if the plugins I mentioned are active I get also those errors!

    `do_action(‘bp_init’); // loggedin_user);

    object(stdClass)#3378 (6) {
    [“id”]=>
    int(1)
    [“fullname”]=>
    string(5) “admin”
    [“is_site_admin”]=>
    bool(true)
    [“is_super_admin”]=>
    bool(true)
    [“userdata”]=>
    object(stdClass)#3450 (10) {
    [“ID”]=>
    string(1) “1”
    [“user_login”]=>
    string(5) “admin”
    [“user_pass”]=>
    string(34) “__the_password_hash_here__”
    [“user_nicename”]=>
    string(5) “admin”
    [“user_email”]=>
    string(24) “admin @localhost
    [“user_url”]=>
    string(0) “”
    [“user_registered”]=>
    string(19) “2013-01-05 17:25:49”
    [“user_activation_key”]=>
    string(0) “”
    [“user_status”]=>
    string(1) “0”
    [“display_name”]=>
    string(5) “admin”
    }
    [“domain”]=>
    string(36) “http://localhost/blog/members/admin/”
    }`

    * I set the loggedin user with `wp_set_current_user( $userID )`

    #149604
    wrowlands
    Participant

    Recently we have updated to the new BuddyPress 1.6.2. Ever since the upgrade, the confirmation email is not going out to members attempting to register as new members. Our site is http://rotarymeansbusiness.com/. We now see that others are having this problem. We did not have this problem before the upgrade. We also use the plugin “Buddypress Pending Activations.

    Please advise,

    Wayne Rowlands

    #149594
    Ben Hansen
    Participant

    just wondering do you get any emails that wp generates or are the activation emails the only ones not being sent?

    #149419
    stefwilliams
    Participant

    Yeah, that one is set to point to /activate. As I say, that page does actually work, but the link to the page isn’t correct in the activation email.
    The email always has the default wp-activate instead of the page defined in BP settings.

    Whisprr
    Participant

    Thank you, we will check it All out. I would rather not have to have another plugin so if your recommendations will fix this it would be great.

    #149304
    Budi Nusyirwan
    Participant

    Hello,

    Just bumping old thread if someone still find the solution. 🙂

    You can disable sending activation email to new registrant by adding code below into your theme/child theme functions.php

    `/* disable sending activation emails */
    /* place this in your child theme’s function.php */
    add_filter( ‘bp_core_signup_send_activation_key’, create_function(”,’return false;’) );`

    Or I also put the code above on Pastebin:
    http://pastebin.com/h6hCidML

    Thanks,
    Budi Nusyirwan

    Hugo Ashmore
    Participant

    Note of warning one click installs can and often are problematic and not recommended. As for credible host, I take your word for that 🙂 Ask them to ensure your IP has a correct PTR record set and go to http://www.openspf.org/ and create a txt SPF entry to add to your MX records this will help certain email hosts to accept email from your server when it comes via your domain records or associates your MX records and the server as being allowed to send email on behalf of that domain and isn’t just some open spam relay.

    Oh and yes perhaps the codex/ or that thread could do with a preface about the nature of this problem, sadly I have actually written in depth twice iirc on this issue when in the past there seemed to be a spate of this troublesome aspect, but not sure it’s possible to find those now.

    Big problem is that many email providers latched onto a series of email protocols to use as a means of checking that received emails were from genuine sources  and not spam, problem was/is these protocols are not mandatory ones to have such as PTR records but due to this those sorts of records, as arcane and complicated as they are become necessary.

    tednopple
    Participant

    @Hugo. Thanks that is good to know. That is what I figured was the case (see my 5th post to this thread, 9th reply) , but alas no one was able to describe that before I found the video for the plugin method from the link @Aces provided, which worked perfectly. Also, instead of saying “Members of the BP community have had success using: WP Mail SMTP” the advice Buddy Press FAQ gives for this problem should explain what you’ve explained.

    But as you said, without detailed knowledge abut the server and or hired tech help, it is difficult to solve that problem. @Whisprr, I recommend the plugin method BuddyPress suggests for now as you try to find the underlying problem. For me, I am using a credible host and simply used a “one click install” for wordpress. I am not sure why my email is not working properly (btw, the mail didn’t go to spam–the email server just rejects the message all together, according to the debug test) and don’t really have the time, knowledge or resources to deal with it immediately.

    Hugo Ashmore
    Participant

    Without detailed knowledge and access to your server it would be hard to speculate as to where the issue lies. A plain vanilla WP install will send out emails quite happily, that is if the server is configured correctly, sendmail is sometimes problematic and postfix often recommended as an alternative. If you have things working now using a plugin to manage the issue then all well and good, it’s just that it masks an issue elsewhere really, and personally I’m not in favour of plugins used to manage aspects such as this.

     

    I would advise you check you have correct PTR record for your IP address, and also set a SPF record along with your MX records doing these two things can drastically affect how mail servers receive your mail or reject it if not happy these two items exist and check out as valid.

    Whisprr
    Participant

    Thank you Hugo, unfortunately we have checked and IT has checked, we have created test accounts and registered, setup other accounts and tested for password change emails. They are simply not arriving. Can you make a suggestion other than the above where we may have made a mistake in the set-up. Something that needs to be checked? I am really running out of time… Thank you for any assistance on this.

    Hugo Ashmore
    Participant

    For the record you do not really need to be adding further plugins to WP to sort out what is actually  not an issue ever related to an application but rests at the server / domain level and in correct server sendmail or other versions of smpt/relay programs configurations and of properly configured email dns records, and requires a little technical knowledge when things don’t work out of the box. Plugins will try and bridge that gap between  correct configurations, and users technical knowledge and I guess if they work alls well and good, but better is that things are sorted out at the real point of  breakage.

     

    So just to clarify this does not need to be done so that WP/ BuddyPress can send emails they have no problem sending emails as long as the server and domain records are correctly setup.

     

    If  your emails are being continually dropped into spam folders it’s because the email server receiving them isn’t able to validate the server as valid for the domain and you likely need to set an SPF record and possibly reverse DNS records but the latter is usually something the host providing the IP address for the server needs to set.

     

     

    Whisprr
    Participant

    I am going to check the solution you defined above. I really hope this will be resolved with this solution. Thank you for the info.

    tednopple
    Participant

    **SOLVED**

    Thank you @Aces for answering and being helpful. All seems to be working now. I will post the solution below for those, like @Whisprr, who have the same problem:

    Basically, the “WP Mail SMTP” plugin method from the link Aces provided worked. I just think the link is very vague and doesn’t explain at all how these plugins are supposed to help or what exactly you are supposed to do with them–it just says ‘most people found these helpful’. So I had to watch this youtube video, which explained how to solve the issue using the WP Mail SMTP, step by step: http://www.youtube.com/watch?v=5GsHbf4Gitw

    Watch it! I would just skip the part about using the FTP to finish installing the plugin (skip 3:00-6:20). The plugin should install perfectly fine.

    Essentially, anyone who has the activation/registration email problem needs to download the “WP Mail SMTP” plugin and then enter the correct settings, as described in the video. I ran into a problem (mentioned earlier in this post) because GMAIL does not allow the plugin access to the account and labels it as suspicious activity–this kept returning an error message in the debug (test email). I also didn’t feel comfortable putting my real email’s username and password, un-hidden, into the username and password form, so I created a new YAHOO account especially for sending emails from my wordpress blog instead of my normal account, to use for this plugin.

    It worked! The debug/test email did not return an error and when I tested the registration for my site, I finally received the activation email–albeit buried in my spam folder.

    Hopefully this helps others because BuddyPress and Word Press do not make it clear that this needs to be done in order to SEND (rather than receive) email from your account or for member registration to work–this is why many people who are Word Press novices can become confused when site registration doesn’t work.

    aces
    Participant

    Email should work but much can go wrong including things connected to plugins, themes and functions.php or bp-custom.php files.

    Presuming the email didn’t go into spam, and WordPress sent emails before installing BuddyPress, then one thing that can be tried is disabling all plugins except except buddypress and the ( un-customised ) bp-default theme.

    If this is a localhost/dev site then php / server has to be correctly configured and/or upgraded for email. Alternatively WP Mail SMTP may be useful in this situation…

    The main email address is set on the wordpress Settings > General page.

    There may be other issues with buddypress in some situations. For more info see: https://buddypress.trac.wordpress.org/ticket/4689 and relevant links on that page.

    tednopple
    Participant

    I am new to BuddyPress and creating a site using WordPress.com

    Any idea as to what address/program sends the activation email? That is, what defualt email address do the activation emails come from? And is it WordPress, BuddyPress or my host that sends out the email?

    Should I have done some configuring to this address first?

    tednopple
    Participant

    after changing some of the plugin settings, I get:

    SMTP -> ERROR: Failed to connect to server: (0)

    The following From address failed:

    tednopple
    Participant

    Aces, I’m not sure how to read the report , but the error messages are:

    SMTP -> FROM SERVER:554 5.7.1 : Recipient address rejected: Access denied

    SMTP -> ERROR: RCPT not accepted from server: 554 5.7.1 : Recipient address rejected: Access denied

    SMTP Error: The following recipients failed:

    Whisprr
    Participant

    I am also having this issue on the site I am constructing with Buddypress-Buddyboss. Validation emails are not going out as well as changed password emails. I need a fix before 2 weeks into January and hundres of ppl start logging in on 8 sites. We chose buddy press / buddy boss for its groups and forum features but this is a serious problem I can not move forward with out fixing and the launch date is coming soon. Thanks for any assistance.

Viewing 25 results - 701 through 725 (of 1,427 total)
Skip to toolbar