Adobe Dreamweaver Forums



Last 10 THreads :         Trouble using variables to name and instantiateTextFields (Last Post : jc_2006 - Replies : 1 - Views : 2 )           »          Background color code is not working. Please help (Last Post : Tim G - Replies : 9 - Views : 10 )           »          error (Last Post : Tim G - Replies : 1 - Views : 2 )           »          DWCS4 Menus (Last Post : DouglasWD - Replies : 0 - Views : 1 )           »          Can't open more than one Macromedia product at a time (Last Post : ChandaBB - Replies : 7 - Views : 8 )           »          DWCS4 Fade/Appear image load question (Last Post : DouglasWD - Replies : 0 - Views : 1 )           »          NetStream progressive FLV download current frame (Last Post : AsafH - Replies : 0 - Views : 1 )           »          Creating Newsletters (Last Post : Yovav - Replies : 2 - Views : 10 )           »          CS4 Div Tags Help Needed (Last Post : Ian Edwards - Replies : 4 - Views : 5 )           »          Letters are cutoff (Last Post : shlomi75 - Replies : 0 - Views : 1 )           »         


Home Register FAQ Members List Calendar Search Today's Posts Mark Forums Read
User Info Statistics
Go Back   Adobe Dreamweaver Forums > Dreamweaver: Main > Dreamweaver Php Development
 
Tags: , , , , , , ,



Reply
  #1 (permalink)  
Old 09-28-2008, 01:55 AM
Serge_Goujon@adobeforums.com
 
Posts: n/a
Diggs:
Default All mail sent by ADDT (e.g. Forgot passwordform) is marked as [Probable Spam]

Yep, kinda strange behavior. Tested with 3 email domains, including gmail and hotmail. BTW, if I send emails using server's mail() function and not by SMTP - there's no [Probable Spam] marking in subject of received message.

Is there any way to use mail() instead SMTP as send method of KT_Email.class.php?

Any Ideas?


Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 09-28-2008, 01:55 AM
Günter_Schenk@adobeforums.com
 
Posts: n/a
Diggs:
Default Re: All mail sent by ADDT (e.g. Forgotpassword form) is marked as [Probable Spam]

Hi Serge,

please open the file KT_Email.class.php and add...

$arr['Date'] = date('r');
$arr['Return-Path'] = 'returnaddress@yoursite.com';

....inside the function getHeaders(). These additions are known to fix the "probable spam" issue.

Cheers,
Günter Schenk
Adobe Community Expert, Dreamweaver
Reply With Quote
  #3 (permalink)  
Old 09-28-2008, 01:55 AM
Serge_Goujon@adobeforums.com
 
Posts: n/a
Diggs:
Default Re: All mail sent by ADDT (e.g. Forgotpassword form) is marked as [Probable Spam]

Thank you very much for fast reply, Günter. I've added those strings and voila: it works like a charm and there's no more [Probable Spam] annoyance!

One more question: why do I get all spaces trimmed from message subject if more than two words used??? (Or do you want me to start new topic?)

For those curious people: I found out how to use mail() instead of SMTP. In ADDT Control panel, I've cleared every mail setup fields but the "Default Sender" field. Anyway I stick to SMTP for security reasons.

Regards,
Serge Goujon
Reply With Quote


  #4 (permalink)  
Old 09-28-2008, 01:55 AM
Günter_Schenk@adobeforums.com
 
Posts: n/a
Diggs:
Default Re: All mail sent by ADDT (e.g. Forgotpassword form) is marked as [Probable Spam]

-----
One more question: why do I get all spaces trimmed from message subject if more than two words used??? (Or do you want me to start new topic?)
-----

honestly, I have never experienced that, and to my knowledge this issue has never been reported by others. Just asking: is your message subject plain text (like: bonjour mes amis) and doesn´t contain any html markup which would possibly be stripped ?

Cheers,
Günter Schenk
Adobe Community Expert, Dreamweaver
Reply With Quote
  #5 (permalink)  
Old 09-28-2008, 01:55 AM
Serge_Goujon@adobeforums.com
 
Posts: n/a
Diggs:
Default Re: All mail sent by ADDT (e.g. Forgotpassword form) is marked as [Probable Spam]

Yes, plain text with no markup. It's in different from default encoding though but I set it right (as well as page with the form).

$emailObj->setEncoding("windows-1251");

First I've thought that the reason is 8bit html_enctype in email.class, but neither base64 nor 7bit (just to test) don't work.

Strange, but when I use english subject - it's ok with spaces (not stripped). Message itself is displayed correctly.

I know that it's beyond simple forum support, but maybe you can help me with that.

Serge
Reply With Quote
  #6 (permalink)  
Old 09-28-2008, 01:55 AM
Günter_Schenk@adobeforums.com
 
Posts: n/a
Diggs:
Default Re: All mail sent by ADDT (e.g. Forgotpassword form) is marked as [Probable Spam]

------
I know that it's beyond simple forum support, but maybe you can help me with that
------

I really have no clue, because that´s the first time I ever heard of this issue.

------
Strange, but when I use english subject - it's ok with spaces (not stripped)
------

So is it some french accents in the subject line which possibly muddle the whole thing ?

Cheers,
Günter Schenk
Adobe Community Expert, Dreamweaver
Reply With Quote


  #7 (permalink)  
Old 09-28-2008, 01:55 AM
Günter_Schenk@adobeforums.com
 
Posts: n/a
Diggs:
Default Re: All mail sent by ADDT (e.g. Forgotpassword form) is marked as [Probable Spam]

-----
ADDT send messages using content_type = 'multipart/alternative', and all other messages that I have in my inbox are using 'text/html'. Maybe this is the issue?
-----

don´t know about that, but the file "includes/common/lib/email/Pear/Mail/mime.php" provides - among others - the two functions...

- &_addHtmlPart -> $params['content_type'] = 'text/html';

- &_addAlternativePart -> $params['content_type'] = 'multipart/alternative';

I don´t have any clue which of these two functions is getting applied to the subject line, if any.

Cheers,
Günter Schenk
Adobe Community Expert, Dreamweaver
Reply With Quote
  #8 (permalink)  
Old 09-28-2008, 01:55 AM
Serge_Goujon@adobeforums.com
 
Posts: n/a
Diggs:
Default Re: All mail sent by ADDT (e.g. Forgotpassword form) is marked as [Probable Spam]

Thanks for your time and big help Günter. I'll try to make it work properly and will write here if I'll succeed in that.

I'm using ADDT since Interakt's Kollection days. Always pleasure. Hope the future development is on going and wont stay on 1.0.0 version. )))

Regards,
Serge
Reply With Quote
  #9 (permalink)  
Old 09-28-2008, 01:55 AM
Günter_Schenk@adobeforums.com
 
Posts: n/a
Diggs:
Default Re: All mail sent by ADDT (e.g. Forgotpassword form) is marked as [Probable Spam]

Hi Serge,

-------
Hope the future development is on going and wont stay on 1.0.0 version
-------

<http://www.adobe.com/cfusion/webforums/forum/mess ageview.cfm?catid=674&threadid=1366351>

"We are planning on addressing ADDT compatibility for DW CS4- details will be shared closer to the final launch" (Adobe´s Scott Fegette).

That´s at least something and would give us another 18 month (the traditional DW release cycle), though it doesn´t say anything (positive or negative) about plans to develop ADDT any further -- however Adobe is traditionally utterly close-lipped in regards to disclosing future plans and usually never reveals any details ahead of time.

The fact *that* Scott Fegette did - certainly by way of exception, and maybe enforcedly - say something about their ADDT-related plans in public at all, is IMO a result of the public pressure many of you guys have put on Adobe -- well done :-)

------
I'm using ADDT since Interakt's Kollection days. Always pleasure.
------

that´s right, but we, the ex-Kollection and/or current ADDT users, are still a pretty "petite" group in comparison to other Adobe products -- ADDT is still a niche product. However, let´s not cherish any illusion :: on the long run it´s IMO most probably a notable increase of new ADDT users which will have an impact on any future decision beyond the "Dreamweaver CS4 compatibility" admission, and our mere appreciation as such will certainly not suffice ;-)

Cheers,
Günter Schenk
Adobe Community Expert, Dreamweaver
Reply With Quote


  #10 (permalink)  
Old 09-28-2008, 01:55 AM
Serge_Goujon@adobeforums.com
 
Posts: n/a
Diggs:
Default Re: All mail sent by ADDT (e.g. Forgotpassword form) is marked as [Probable Spam]

Good news! So let's cross our fingers and look forward to Adobe make that all happend for real. If they need some additional pressure they will get it! )) Can't wait Dreamweaver CS4 and of course ADDT (CS4)

Thank you once more, Günter, for providing such a valuable and exciting information. It doubles the pleasure when it comes to talking to such competent and responsive person as yourself.

Have a nice day/evening/noon/night! ))

Regards,
Serge Goujon
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



© Camley Interactive (camley.info) 2008 - all logos and images are copywrite their respective owners.
Proud member of the Camley Interactive Network
All times are GMT. The time now is 11:08 AM.


Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.1.0 ©2007, Crawlability, Inc.
Inactive Reminders By Mished.co.uk