Skip to Content
Menu
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
To pytanie dostało ostrzeżenie
2 Odpowiedzi
9643 Widoki

What i do:

  • Create a New Lead AND assign a Sales Team
  • Because of the Sales Team there are three Followers for the newly created lead
  • Post a message with message_post()

I would expect that all followers of the new lead will receive an e-mail BUT THEY DONT?!?

The normal E-Mail (the one for the lead creation is send cie E-Mail but messge_post() does not send E-Mails?!? What do i need to do to send E-Mails also when posting a message in code?!?

Here is how i call the message_post: 

leadrecord.message_post(body=recordtext, subject=values['name'], type='email', subtype='mt_lead_create', content_subtype='plaintext')

Also tried with:

leadrecord.message_post(body=recordtext, subject=values['name'], type='notification',  content_subtype='plaintext')

Message is posted BUT no E-Mails are send :( 

Awatar
Odrzuć

I'm trying to do the same. Did you manage to send an email!

Najlepsza odpowiedź

Try use 'mt_comment' in subtype (since your followers may not be subscribed to 'Lead Created', but most probably are assigned to "Discussion"): 

leadrecord.message_post(body=recordtext, subject=values['name'],  subtype='mt_comment')

Besides, check that your followers' preferences do not contain "Receive Messages" - "Never"

Awatar
Odrzuć
Powiązane posty Odpowiedzi Widoki Czynność
1
mar 25
4339
2
lut 24
12819
1
gru 24
1597
2
sty 20
15239
16
sie 19
10206