Author |
Topic |
|
smurfanders
Starting Member
Sweden
2 Posts |
Posted - 26 November 2007 : 05:49:10
|
Hi,
I'm having some problems with the mailsetup. It works fine to click on a user and send them mail but when a user subscribes to the forum they don't recieve emails ad they don't recieve emails to verify their mailaccount. Do you know what the problem could be? I am using "Cili!Mail (ChiliSoft ASP)" as the email component...
With regards,
Anders |
|
pdrg
Support Moderator
United Kingdom
2897 Posts |
Posted - 26 November 2007 : 11:45:33
|
You will probably not get much help with that one Anders, I don't think many people here use Chili and it's not officially supported to my knowledge.
That said, if the email functionality is working in one case and not the other, I'd look out for any code differences in the mailsending bits of the pages - whilst Chili does a great job most of the time, it's not a direct replacement for MS's ASP, and implements it slightly differently sometimes - specifically look at things like line spacing which Chili is very sensitive to eg...
code code code _
code code code
In MS's ASP that resolves to code code code code code code (ie the line continuation character ignores the blank line) but with Chili it'll error
I hope this helps |
|
|
smurfanders
Starting Member
Sweden
2 Posts |
Posted - 29 November 2007 : 05:45:00
|
Hi again,
thanks for your reply and the tips on spacing. It seems to work now after i removed a blankstep in one command in inc_subscription.asp
This is before I changed the line: strSql = "SELECT S.MEMBER_ID, S.CAT_ID, S.FORUM_ID, S.TOPIC_ID, M.M_NAME, M.M_EMAIL " & _ " FROM " & strTablePrefix & "SUBSCRIPTIONS S, " & strMemberTablePrefix & "MEMBERS M"
And this is after (see the HUGE difference ): strSql = "SELECT S.MEMBER_ID, S.CAT_ID, S.FORUM_ID, S.TOPIC_ID, M.M_NAME, M.M_EMAIL " & _ " FROM " & strTablePrefix & "SUBSCRIPTIONS S," & strMemberTablePrefix & "MEMBERS M"
...so, I removed a blank space after "SUBSCRIPTIONS S,". Now it seems to work.
Thanks again!
With regards,
Anders |
|
|
|
Topic |
|
|
|