View Susana Cipriota's plugins
info@elgg.org
Security issues should be reported to security@elgg.org!
©2014 the Elgg Foundation
Elgg is a registered trademark of Thematic Networks.
Cover image by Raül Utrera is used under Creative Commons license.
Icons by Flaticon and FontAwesome.
Thank you, this is a great plugin. A question though,
The link in registration confirmation mail is not a clickable link, is that how it is intended?
Because in invite friends mail the join link is clickable.
Both emails end up in my spanfolders.
Fixed, thank you ...
Thanks Gillie! Hope you enjoy it!
@gillie... how did you fix the registration link and Spam folder issues please?
Mark Bridges Regarding the Spam flags I actually just reduced the Spam-Score. Started around 6 and is now down to 4.5. I removed all the images in the mail and tried to change the headers. The problem must be in the haders being sent, but I have not been able to optimize it further.
And my mails still get flagged, that's why I'm holding back using this plugin. If you fix it please share.
Got the reg link clickable with preg_replace. After the other $message formatting I use this one:
$message = preg_replace('@(https?://([-\w\.]+)+(:\d+)?(/([\w/_\.]*(\?\S+)?)?)?)@', '<a href="$1">$1</a>', $message);
@gillie many thanks for this... very useful. Perhaps not ready for produvtion use if mails get junked so readily, it would be interesting to hear what @Susana Cipriota says.
Thanks all for your comments.
Sadly, the rules for flag emails as spam can't be complete managed from php, there are other points to take care besides the mail content (server, domain, quantity), so when the contends is html more points are added to get flag.
I use this pluggin in some project and the mails are sent just well.
Cheers!
@Susana Cipriota, many thanks for your reflections on the spam issue.. perhaps I will be ok with it, so will have a go... it is certainly something which I'd like to implement. Many thanks :)
mail($tgt, $subject, $message, $headers, $flags )
++ mx, etc recs mngmt on srvr
that how fbfkids emails never go to spam folder
MX Record check - A tool to show the MX record for a given domain
I used the following in the start.php for the mod and I now have clickable links, however, when a message is sent with a link that references a blog article or anything with a hyphen (-) in it the clickable link cuts out just before the hyphen (-).
Does anyone know how to modify the following code so that the clickable links are encoded properly to include all symbols including the hyphen?
$message = preg_replace('@(https?://([-\w\.]+)+(:\d+)?(/([\w/_\.]*(\?\S+)?)?)?)@', '<a href="$1">$1</a>', $message);
An example of what I'm referring to:
This is how the following link appears in the outgoing email:
http://questnetglobal.com/pg/blog/admin/read/191/youtube-marketing-strategies-for-video-marketing-newbies
Also, all lines in the outgoing emails are are run together with no spacing as follows:
You have a new comment on your item "YouTube Marketing Strategies - For Video Marketing Newbies" from Sherri Danko. It reads: What a great article! I needed this. To reply or view the original item, click here: http://questnetglobal.com/pg/blog/admin/read/191/youtube-marketing-strategies-for-video-marketing-newbies To view Sherri Danko's profile, click here: http://questnetglobal.com/pg/profile/sherrime You cannot reply to this email.
Rather than:
You have a new comment on your item "YouTube Marketing Strategies - For Video Marketing Newbies" from Sherri Danko.
It reads: What a great article! I needed this.
To reply or view the original item, click here: http://questnetglobal.com/pg/blog/admin/read/191/youtube-marketing-strategies-for-video-marketing-newbies
To view Sherri Danko's profile, click here: http://questnetglobal.com/pg/profile/sherrime You cannot reply to this email.
Try this to fix linebreaks: $message = nl2br($message);
Hi!
Thank you for this great Plugin! This is exactly what I needed! It works great!
But I have a Question about the Language:
There is a Problem using some german Vowels like "ü", "ö" and "ä". They are displayed wrong in the Message.
Here is an example:
this: Text für MARY POPPINS
changes to this:
Text für Mary Poppins
Where can I change Code, that every Vowel is displayed right?
Thank you in advance for your support!
@verkraftet Hi! Thanks for your message! You have to ensure the special characters are written like the following unicode symbols:
&Vuml;
(Cap)
Ä
(196)
Ë
(203)
Ï
(207)
Ö
(214)
Ü
(220)
Ÿ
(159)
ä
(228)
ë
(235)
ï
(239)
ö
(246)
ü
(252)
ÿ
(255)
Thank you Susana Cipriota for your reply!
I think this makes the Plugin a bit "useless". At least for German Sites.
Users with no experience in HTML will never use Unicode into their Postings. They will not understand, that they cannot write "Ü" and that they have to write "Ü" instead.
Is there no other way to handle this?
does this work on 1.8.3?
Needed a 1.8 version for a client, so hacked one together quickly: https://github.com/mapkyca/html_mails_1.8
how to use this