My web host uses Qmail which seems to have issues with the formatting used in the auto-emails. I brought this problem up before and I was told to run:
UPDATE template SET template = REPLACE(template, "\n", "\r\n");
That SQL query did in fact fix it so that auto-emails for registration and pm notifications worked, but I'm still having problems with the topic notifications and the auto-email to admins when a user registers.
UPDATE template SET template = REPLACE(template, "\n", "\r\n");
That SQL query did in fact fix it so that auto-emails for registration and pm notifications worked, but I'm still having problems with the topic notifications and the auto-email to admins when a user registers.
Comment