Difference between revisions of "Extension talk:EmailPage"
m |
(EmailArticle integration with Class.phpmailer.php and where it should go) |
||
Line 1: | Line 1: | ||
If you do not select a category, group etc, but specify additional recipients emails to send to, Special:EmailArticle fails with ''<ea_autherror>''. | If you do not select a category, group etc, but specify additional recipients emails to send to, Special:EmailArticle fails with ''<ea_autherror>''. | ||
Does it log what it is sending anywhere on the wiki? --[[User:Sven|Sven]] 14:21, 11 June 2007 (NZST) | Does it log what it is sending anywhere on the wiki? --[[User:Sven|Sven]] 14:21, 11 June 2007 (NZST) | ||
+ | ---- | ||
+ | There could be an issue with the documentation on MW for this extension, it says; | ||
+ | |||
+ | ''This extension uses Brent R. Matzelle's phpmailer class which you can download from OrganicDesign:Class.phpmailer.php and save as a file called class.phpmailer.php in the EmailArticle directory.'' | ||
+ | |||
+ | Which suggests to save Class.phpmailer.php in the ''EmailArticle'' directory. The code looks like it is looking for a subdirectory of that called ''phpmailer''. | ||
+ | |||
+ | <php> | ||
+ | $wgPhpMailerClass = dirname(__FILE__).'/phpmailer/class.phpmailer.php'; # From http://phpmailer.sourceforge.net/ | ||
+ | </php> | ||
+ | --[[User:Sven|Sven]] 09:11, 2 July 2007 (NZST) |
Revision as of 21:11, 1 July 2007
If you do not select a category, group etc, but specify additional recipients emails to send to, Special:EmailArticle fails with <ea_autherror>. Does it log what it is sending anywhere on the wiki? --Sven 14:21, 11 June 2007 (NZST)
There could be an issue with the documentation on MW for this extension, it says;
This extension uses Brent R. Matzelle's phpmailer class which you can download from OrganicDesign:Class.phpmailer.php and save as a file called class.phpmailer.php in the EmailArticle directory.
Which suggests to save Class.phpmailer.php in the EmailArticle directory. The code looks like it is looking for a subdirectory of that called phpmailer.
<php> $wgPhpMailerClass = dirname(__FILE__).'/phpmailer/class.phpmailer.php'; # From http://phpmailer.sourceforge.net/ </php> --Sven 09:11, 2 July 2007 (NZST)