-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Confirmation email when adding group members #3
Comments
I used the PHPMailer library, provided by owncloud in 3rd party apps, since we are not able to send mails to dtu accounts, because of a block filter (error: Sender address rejected: Domain not found). I created a gmail account ([email protected]) to send emails via google's smtp. I modified the class.phpmailer.php (more specifically the SmtpSend function) in PHPMailer based on the following link, since there are some changes in the latest version of PHP regarding OpenSSL: Now, mail works. |
So people get an e-mail from 'data.deic@gmail'? Couldn't we an address something like '[email protected]:[email protected]'? Den 05/02/2015 kl. 19.09 skrev psyllost <[email protected]mailto:[email protected]>: I used the PHPMailer library, provided by owncloud in 3rd party apps, since we are not able to send mails to dtu accounts, because of a block filter (error: Sender address rejected: Domain not found). I created a gmail account ([email protected]:[email protected]) to send emails via google's smtp. I modified the class.phpmailer.php (more specifically the SmtpSend function) in PHPMailer based on the following link, since there are some changes in the latest version of PHP regarding OpenSSL: Now, mail works. — |
Yes, people can reply to [email protected] and as sender they see "Data DeiC". |
I can add [email protected] in gmail settings to be the sender but I need the password of this account for that. |
Please use email-addresses that actually exist... |
Finally, I got the standard mail php function to work. I added an additional parameter with the senders address. More in documentation: It seems that php was passing the servers address instead of the email and this address was blocked by dtu, perhaps because it is not a valid email address. I need to make a further research on that. No need for gmail now. But should I use the "[email protected]" or "[email protected]" as sender? |
At the moment, a group owner can invite another user to the group and a "Pending..." under the name of the invited user appears. The latter receives an email with the text: You have been invited to the group "gid" by "owner". Press the link to accept the invitation. Things that need to be done:
Please, let me know if I am forgetting something or additions you prefer. |
I haven't put javascript so remember to refresh the page when you test it. |
Look for inspiration in user_alias.
The text was updated successfully, but these errors were encountered: